You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@santuario.apache.org by co...@apache.org on 2020/04/02 08:45:20 UTC

svn commit: r1876035 - /santuario/xml-security-java/trunk/pom.xml

Author: coheigea
Date: Thu Apr  2 08:45:20 2020
New Revision: 1876035

URL: http://svn.apache.org/viewvc?rev=1876035&view=rev
Log:
SANTUARIO-529 - Disabling ErrorProne until it supports JDK 14

Modified:
    santuario/xml-security-java/trunk/pom.xml

Modified: santuario/xml-security-java/trunk/pom.xml
URL: http://svn.apache.org/viewvc/santuario/xml-security-java/trunk/pom.xml?rev=1876035&r1=1876034&r2=1876035&view=diff
==============================================================================
--- santuario/xml-security-java/trunk/pom.xml (original)
+++ santuario/xml-security-java/trunk/pom.xml Thu Apr  2 08:45:20 2020
@@ -159,13 +159,13 @@
                     <target>${targetJdk}</target>
                     <compilerArgs>
                         <arg>-XDcompilePolicy=simple</arg>
-                        <arg>-Xplugin:ErrorProne</arg>
+                        <!-- TODO Disabled until JDK 14 is supported <arg>-Xplugin:ErrorProne</arg>-->
                     </compilerArgs>
                     <annotationProcessorPaths>
                         <path>
                             <groupId>com.google.errorprone</groupId>
                             <artifactId>error_prone_core</artifactId>
-                            <version>2.3.2</version>
+                            <version>2.3.4</version>
                         </path>
                     </annotationProcessorPaths>
                 </configuration>