Skip to content

Commit

Permalink
Java 17 experimental support
Browse files Browse the repository at this point in the history
  • Loading branch information
skapral committed Feb 12, 2022
1 parent 3a5ed8f commit b7dec0c
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,15 @@ on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
java: [ '11', '17' ]
name: Testing on Java ${{ matrix.Java }}
steps:
- uses: actions/checkout@v2
- uses: actions/setup-java@v2.3.1
with:
java-version: '11'
java-version: ${{ matrix.java }}
distribution: adopt
- name: Build tools
run: ./mvnw clean install -B -Pbuild-tools -Djgitver.skip=true
Expand Down
2 changes: 1 addition & 1 deletion build-tools/parent/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>0.8.5</version>
<version>0.8.7</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
Expand Down
2 changes: 1 addition & 1 deletion oo-equivalence/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@
<dependency>
<groupId>net.bytebuddy</groupId>
<artifactId>byte-buddy</artifactId>
<version>1.10.7</version>
<version>1.11.22</version>
</dependency>
<dependency>
<groupId>commons-io</groupId>
Expand Down

0 comments on commit b7dec0c

Please sign in to comment.