You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by em...@apache.org on 2018/03/09 19:47:14 UTC

svn commit: r1826371 - /myfaces/core/branches/2.3.x/parent/pom.xml

Author: embreijo
Date: Fri Mar  9 19:47:14 2018
New Revision: 1826371

URL: http://svn.apache.org/viewvc?rev=1826371&view=rev
Log:
update findbugs plugin

Modified:
    myfaces/core/branches/2.3.x/parent/pom.xml

Modified: myfaces/core/branches/2.3.x/parent/pom.xml
URL: http://svn.apache.org/viewvc/myfaces/core/branches/2.3.x/parent/pom.xml?rev=1826371&r1=1826370&r2=1826371&view=diff
==============================================================================
--- myfaces/core/branches/2.3.x/parent/pom.xml (original)
+++ myfaces/core/branches/2.3.x/parent/pom.xml Fri Mar  9 19:47:14 2018
@@ -242,7 +242,7 @@
                 <plugin>
                     <groupId>org.codehaus.mojo</groupId>
                     <artifactId>findbugs-maven-plugin</artifactId>
-                    <version>2.5.2</version>
+                    <version>3.0.5</version>
                 </plugin>
                 <plugin>
                   <artifactId>maven-project-info-reports-plugin</artifactId>
@@ -316,6 +316,18 @@
             </build>
         </profile>
 
+        <!-- Disable doclint on java 8 as it is very strict.
+             Some javadocs issues will need to be fixed like non existent reference links -->
+        <profile>
+            <id>disable-java8-doclint</id>
+            <activation>
+                <jdk>[1.8,)</jdk>
+            </activation>
+            <properties>
+                <additionalparam>-Xdoclint:none</additionalparam>
+            </properties>
+        </profile>
+
     </profiles>
 
 
@@ -335,6 +347,7 @@
             <plugin>
                 <groupId>org.codehaus.mojo</groupId>
                 <artifactId>findbugs-maven-plugin</artifactId>
+                <version>3.0.5</version>
             </plugin>
             <plugin>
               <groupId>org.codehaus.mojo</groupId>