You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by se...@apache.org on 2014/04/16 18:22:12 UTC

svn commit: r1587961 - /commons/proper/net/trunk/pom.xml

Author: sebb
Date: Wed Apr 16 16:22:11 2014
New Revision: 1587961

URL: http://svn.apache.org/r1587961
Log:
Test if Javadoc 8 fix works

Modified:
    commons/proper/net/trunk/pom.xml

Modified: commons/proper/net/trunk/pom.xml
URL: http://svn.apache.org/viewvc/commons/proper/net/trunk/pom.xml?rev=1587961&r1=1587960&r2=1587961&view=diff
==============================================================================
--- commons/proper/net/trunk/pom.xml (original)
+++ commons/proper/net/trunk/pom.xml Wed Apr 16 16:22:11 2014
@@ -406,6 +406,13 @@ Supported protocols include: Echo, Finge
                 <configuration>
                     <excludePackageNames>examples.*</excludePackageNames>
                 </configuration>
+                <reportSets>
+                  <reportSet>
+                    <reports>
+                      <report>javadoc</report>
+                    </reports>
+                  </reportSet>
+                </reportSets>
             </plugin>
 
             <plugin>
@@ -434,4 +441,18 @@ Supported protocols include: Echo, Finge
         </plugins>
     </reporting>
 
+    <profiles>
+      <profile>
+        <!-- Temporary hack to suppress Javadoc 8 errors -->
+        <id>javadoc_8</id>
+        <activation>
+          <jdk>1.8</jdk>
+        </activation>
+        <properties>
+          <!-- Disable Xdoclint, until JavaDoc issues are fixed -->
+          <additionalparam>-Xdoclint:none</additionalparam>          
+        </properties>
+      </profile>
+    </profiles>
+
 </project>