Skip to content

Commit

Permalink
Merge pull request #2762 from ozangunalp/enable_java_23_on_ci
Browse files Browse the repository at this point in the history
Enable java 23 on CI workflow
  • Loading branch information
cescoffier authored Sep 24, 2024
2 parents ecd7904 + 91a5740 commit 9478784
Show file tree
Hide file tree
Showing 5 changed files with 46 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/build-main-branches.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,10 @@ jobs:
'name': '',
'version': '21',
},
{
'name': '',
'version': '23',
},
{
'version': '21',
'build_opts': '-Pslow-flaky-tests -Drevapi.skip=true -Dformat.skip=true',
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/build-podman.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,10 @@ jobs:
'name': '',
'version': '21',
},
{
'name': '',
'version': '23',
},
{
'version': '11',
'build_opts': '-Pslow-flaky-tests -Drevapi.skip=true',
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/build-pull.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,10 @@ jobs:
'name': '',
'version': '21',
},
{
'name': '',
'version': '23',
},
{
'version': '21',
'build_opts': '-Pslow-flaky-tests -Drevapi.skip=true -Dformat.skip=true',
Expand Down
17 changes: 17 additions & 0 deletions smallrye-reactive-messaging-amqp/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -174,5 +174,22 @@
</plugins>
</build>
</profile>
<profile>
<id>allow-security-manager</id>
<activation>
<jdk>[23, )</jdk>
</activation>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<argLine>-Djava.security.manager=allow</argLine>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>
17 changes: 17 additions & 0 deletions smallrye-reactive-messaging-provider/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -88,4 +88,21 @@

</dependencies>

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<generatedSourcesDirectory>${project.build.directory}/generated-sources/</generatedSourcesDirectory>
<annotationProcessors>
<annotationProcessor>
org.jboss.logging.processor.apt.LoggingToolsProcessor
</annotationProcessor>
</annotationProcessors>
</configuration>
</plugin>
</plugins>
</build>

</project>

0 comments on commit 9478784

Please sign in to comment.