Skip to content

Commit

Permalink
Fixes piranhacloud#4029 - Add Java 23 to build (piranhacloud#4030)
Browse files Browse the repository at this point in the history
  • Loading branch information
mnriem authored Sep 28, 2024
1 parent 63b448b commit 6c9a24a
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@ jobs:
strategy:
fail-fast: false
matrix:
java: [ 21, 22 ]
java: [ 21, 23 ]
os: [ubuntu-latest, windows-latest]
steps:
- name: Checkout Sources
uses: actions/checkout@v4
- name: Setup Java
- name: Setup Java ${{ matrix.java }}
uses: actions/setup-java@v4
with:
distribution: 'temurin'
Expand Down
8 changes: 4 additions & 4 deletions http/virtual/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -72,17 +72,17 @@
</build>
</profile>
<profile>
<id>jdk22</id>
<id>jdk23</id>
<activation>
<jdk>22</jdk>
<jdk>23</jdk>
</activation>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<release>22</release>
<release>23</release>
<enablePreview>true</enablePreview>
</configuration>
</plugin>
Expand All @@ -94,7 +94,7 @@
<id>attach-javadocs</id>
<configuration>
<additionalOptions>--enable-preview</additionalOptions>
<release>22</release>
<release>23</release>
</configuration>
</execution>
</executions>
Expand Down
6 changes: 3 additions & 3 deletions test/embedded/springboot-virtualthreads/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -83,17 +83,17 @@
</build>
</profile>
<profile>
<id>jdk22</id>
<id>jdk23</id>
<activation>
<jdk>22</jdk>
<jdk>23</jdk>
</activation>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<release>22</release>
<release>23</release>
<enablePreview>true</enablePreview>
</configuration>
</plugin>
Expand Down

0 comments on commit 6c9a24a

Please sign in to comment.