Skip to content

Commit

Permalink
Set minimal requirement to java 17
Browse files Browse the repository at this point in the history
  • Loading branch information
Hakky54 committed May 22, 2024
1 parent 72b4157 commit 87065b0
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
fail-fast: false
matrix:
os: [ ubuntu-latest, macos-latest ]
java: [ '11', '17', '21' ]
java: [ '17', '21' ]

steps:
- uses: actions/checkout@v2
Expand Down Expand Up @@ -46,7 +46,7 @@ jobs:
fail-fast: false
matrix:
os: [ windows-latest ]
java: [ '11', '17', '21' ]
java: [ '17', '21' ]

steps:
- uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion .gitpod.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM adoptopenjdk/maven-openjdk11:latest
FROM adoptopenjdk/maven-openjdk17:latest

RUN apt-get update
run apt-get install git -y
2 changes: 1 addition & 1 deletion EXERCISES.MD
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ These are the following steps:

## Starting the server
**Minimum requirements:**
1. Java 11
1. Java 17
2. Maven 3.5.0
3. Eclipse, Intellij IDEA (or any other text editor like VIM)
4. A terminal
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
</modules>

<properties>
<version.java>11</version.java>
<version.java>17</version.java>
<version.scala>2.13</version.scala>
<version.scala-compiler>2.13.14</version.scala-compiler>
<version.kotlin>2.0.0</version.kotlin>
Expand Down

0 comments on commit 87065b0

Please sign in to comment.