Skip to content

Commit

Permalink
use Java 20
Browse files Browse the repository at this point in the history
  • Loading branch information
forax committed Sep 12, 2023
1 parent c53aa1e commit 5545e19
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 39 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
java: [ 21-ea ]
java: [ 20 ]
name: Java ${{ matrix.java }}
steps:
- uses: actions/checkout@v2
Expand Down
16 changes: 8 additions & 8 deletions .idea/workspace.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 0 additions & 14 deletions injector/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,18 +13,4 @@
<artifactId>injector</artifactId>
<version>1.0-SNAPSHOT</version>

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>21</source>
<target>21</target>
</configuration>
</plugin>
</plugins>
</build>


</project>
13 changes: 0 additions & 13 deletions mapper/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,17 +13,4 @@
<artifactId>mapper</artifactId>
<version>1.0-SNAPSHOT</version>

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>21</source>
<target>21</target>
</configuration>
</plugin>
</plugins>
</build>

</project>
6 changes: 3 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -47,9 +47,9 @@
<version>3.11.0</version>
<configuration>
<enablePreview>true</enablePreview>
<release>21</release>
<source>21</source>
<target>21</target>
<release>20</release>
<source>20</source>
<target>20</target>
</configuration>
</plugin>

Expand Down

0 comments on commit 5545e19

Please sign in to comment.