Skip to content

Commit

Permalink
Add tests for java 17 and remove java 8
Browse files Browse the repository at this point in the history
  • Loading branch information
lbergelson committed Aug 21, 2023
1 parent deb1a3f commit 317e083
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
strategy:
matrix:
distribution: [ 'zulu' ]
java: [ '8', '11' ]
java: [ '11', '17' ]
env:
NO_GCE_CHECK: true
SPARK_LOCAL_IP: localhost
Expand Down
9 changes: 8 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,13 @@
<scala.version>2.12</scala.version>
<spark.version>3.3.3</spark.version>
<jackson.core.version>2.13.3</jackson.core.version>
<argLine>
--add-exports java.base/sun.nio.ch=ALL-UNNAMED
--add-opens java.base/java.nio=ALL-UNNAMED
--add-opens java.base/java.io=ALL-UNNAMED
--add-opens java.base/java.util=ALL-UNNAMED
--add-opens java.base/java.lang.invoke=ALL-UNNAMED
</argLine>
</properties>

<dependencies>
Expand Down Expand Up @@ -288,7 +295,7 @@
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>0.8.6</version>
<version>0.8.8</version>
<executions>
<execution>
<id>jacoco-initialize</id>
Expand Down

0 comments on commit 317e083

Please sign in to comment.