Skip to content

Commit

Permalink
try to fix error-prone configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
asolntsev committed Oct 23, 2024
1 parent c7b606c commit 69c38b6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
2 changes: 0 additions & 2 deletions .mvn/jvm.config
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,3 @@
--add-exports jdk.compiler/com.sun.tools.javac.util=ALL-UNNAMED
--add-opens jdk.compiler/com.sun.tools.javac.code=ALL-UNNAMED
--add-opens jdk.compiler/com.sun.tools.javac.comp=ALL-UNNAMED
-XDcompilePolicy=simple
-Xplugin:ErrorProne
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@
<target>${java.version}</target>
<compilerArgs>
<arg>-XDcompilePolicy=simple</arg>
<arg>-Xplugin:ErrorProne</arg>
<arg>-Xplugin:ErrorProne -Xep:MissingSummary:OFF -Xep:JdkObsolete:OFF -Xep:ReferenceEquality:OFF -Xep:OperatorPrecedence:OFF</arg>
</compilerArgs>
<annotationProcessorPaths>
<path>
Expand Down Expand Up @@ -231,7 +231,7 @@
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.10.1</version>
<configuration>
<doclint>all,-accessibility,-syntax,-html,-reference</doclint>
<doclint>all,-accessibility,-syntax,-html,-reference,-missing</doclint>
</configuration>
<executions>
<execution>
Expand Down

0 comments on commit 69c38b6

Please sign in to comment.