Skip to content

Commit

Permalink
Merge pull request #609 from xstefank/temp-compiler-override
Browse files Browse the repository at this point in the history
Temporarily override compiler plugin in order to compile on JDK 23
  • Loading branch information
xstefank authored Jan 27, 2025
2 parents 0aeb09c + 4c8163d commit 0ea3089
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -205,6 +205,33 @@
<build>
<pluginManagement>
<plugins>
<!-- Temporary override compiler plugin, to compile on JDK 23 until
https://github.com/smallrye/smallrye-parent/pull/576 is merged and parent updated -->
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<executions>
<execution>
<id>default-compile</id>
<phase>compile</phase>
<goals>
<goal>compile</goal>
</goals>
<!-- Ensure that the logging generator does not generate invalid annotations -->
<configuration>
<compilerArgs>
<arg>-Aorg.jboss.logging.tools.addGeneratedAnnotation=false</arg>
</compilerArgs>
<annotationProcessorPaths>
<path>
<groupId>org.jboss.logging</groupId>
<artifactId>jboss-logging-processor</artifactId>
<version>${version.org.jboss.logging-processor}</version>
</path>
</annotationProcessorPaths>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.asciidoctor</groupId>
<artifactId>asciidoctor-maven-plugin</artifactId>
Expand Down

0 comments on commit 0ea3089

Please sign in to comment.