Skip to content

Commit

Permalink
try 24-ea
Browse files Browse the repository at this point in the history
  • Loading branch information
mayerrobert committed Dec 1, 2024
1 parent 4f6d037 commit 0b7bf0b
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
continue-on-error: true
strategy:
matrix:
java: [ '8', '17', '21', '23' ]
java: [ '8', '17', '21', '23', '24-ea' ]
name: Java ${{ matrix.Java }} CI

steps:
Expand Down
12 changes: 7 additions & 5 deletions lambda/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -35,18 +35,18 @@

<profiles>
<profile>
<id>up-to-21</id>
<id>up-to-23</id>
<activation>
<jdk>[1.8,21]</jdk>
<jdk>[1.8,23]</jdk>
</activation>
<properties>
<maven.site.skip>false</maven.site.skip>
</properties>
</profile>
<profile>
<id>from-22</id>
<id>from-24</id>
<activation>
<jdk>[22,)</jdk>
<jdk>[24,)</jdk>
</activation>
<build>
<plugins>
Expand All @@ -57,7 +57,9 @@

<configuration>
<excludes>
<exclude>**/*ManualTest.java</exclude>
<!-- archunit 1.3.0 contains a shaded asm 9.7 which doesn't support Java24/classfile version 68.
next archunit version (not yet released) will use asm 9.7.1 -->
<exclude>**/ArchitectureTest.java</exclude>
</excludes>
</configuration>
</plugin>
Expand Down

0 comments on commit 0b7bf0b

Please sign in to comment.