Skip to content

Commit

Permalink
disable error prone on Java 11
Browse files Browse the repository at this point in the history
  • Loading branch information
andreaTP committed Sep 12, 2024
1 parent 65e338d commit 6d86806
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -710,6 +710,25 @@
</build>
</profile>

<profile>
<id>java11</id>
<activation>
<jdk>11</jdk>
</activation>
<build>
<plugins>
<!-- disable Error Prone -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<compilerArgs combine.self="override"/>
</configuration>
</plugin>
</plugins>
</build>
</profile>

<profile>
<id>release</id>
<distributionManagement>
Expand Down

0 comments on commit 6d86806

Please sign in to comment.