Skip to content

Commit

Permalink
AVRO-3852: Upgrade CI tests to Java 21 GA release (#2525)
Browse files Browse the repository at this point in the history
* AVRO-3852: Upgrade CI tests to Java 21 GA release

* AVRO-3852: Fix maven archetype generation for multiple Java versions

* AVRO-3852: Test with JDK 22 EA distribution

* AVRO-3852: Fix maven archetype integration test
  • Loading branch information
iemejia authored Oct 23, 2023
1 parent cc9b668 commit eeb1f02
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/test-lang-java.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,8 @@ jobs:
- '8'
- '11'
- '17'
- '21-ea'
- '21'
- '22-ea'
steps:
- uses: actions/checkout@v4

Expand Down Expand Up @@ -76,7 +77,8 @@ jobs:
- '8'
- '11'
- '17'
- '21-ea'
- '21'
- '22-ea'
steps:
- uses: actions/checkout@v4

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,6 @@
<maven.compiler.target>${maven.compiler.target}</maven.compiler.target>
<project.build.sourceEncoding>${project.build.sourceEncoding}</project.build.sourceEncoding>
<avro.version>${project.version}</avro.version>
<maven.compiler.source>${maven.compiler.source}</maven.compiler.source>
<maven.compiler.target>${maven.compiler.target}</maven.compiler.target>
<jackson-bom.version>${jackson-bom.version}</jackson-bom.version>
<junit5.version>${junit5.version}</junit5.version>
<logback.version>1.2.3</logback.version>
Expand Down Expand Up @@ -143,8 +141,8 @@
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<maven.compiler.source>\${maven.compiler.source}</maven.compiler.source>
<maven.compiler.target>\${maven.compiler.target}</maven.compiler.target>
<source>\${maven.compiler.source}</source>
<target>\${maven.compiler.target}</target>
</configuration>
</plugin>
</plugins>
Expand Down

0 comments on commit eeb1f02

Please sign in to comment.