Skip to content

Commit

Permalink
Update the annotation processing compiler options for laster JDKs.
Browse files Browse the repository at this point in the history
  • Loading branch information
rhusar committed Dec 11, 2023
1 parent e722f43 commit 9954650
Showing 1 changed file with 23 additions and 1 deletion.
24 changes: 23 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,29 @@
<goal>compile</goal>
</goals>
<configuration>
<release>${jdk.release.version}</release>
<!-- <release>${jdk.release.version}</release>-->
<compilerArgument>-proc:none</compilerArgument>
</configuration>
</execution>
<execution>
<id>test-compile</id>
<phase>test-compile</phase>
<goals>
<goal>testCompile</goal>
</goals>
<configuration>
<annotationProcessorPaths>
<path>
<groupId>${project.groupId}</groupId>
<artifactId>${project.artifactId}</artifactId>
<version>${project.version}</version>
</path>
<path>
<groupId>org.jboss.logging</groupId>
<artifactId>jboss-logging</artifactId>
<version>${version.jboss-logging}</version>
</path>
</annotationProcessorPaths>
</configuration>
</execution>
</executions>
Expand Down

0 comments on commit 9954650

Please sign in to comment.