We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0a90978 commit bdf04a8Copy full SHA for bdf04a8
1 file changed
pom.xml
@@ -75,6 +75,8 @@
75
<artifactId>error_prone_core</artifactId>
76
<!-- 2.32.0 and 2.33.0 break our java 11 build with compiler errors, I reported this to the
77
errorprone team, but try upgrading to new versions in the future-->
78
+ <!-- This version is only compatible with JDKs < 24. We have a profile below that disables
79
+ errorprone for JDKs >= 24. -->
80
<version>2.31.0</version>
81
</dependency>
82
<dependency>
@@ -172,8 +174,8 @@
172
174
<configuration>
173
175
<fork>true</fork>
176
<compilerArgs combine.children="append">
177
+ <!-- we only use the basic compilation flags without activating errorprone -->
178
<arg>-XDcompilePolicy=simple</arg>
- <arg>-Xplugin:ErrorProne -XepDisableAllChecks</arg>
179
</compilerArgs>
180
</configuration>
181
</plugin>
0 commit comments