See below for one way to automatically suppress Javadoc errors when
running under Java 8

It should not be adopted as a permanent measure, but may be useful
whilst Javadoc is being fixed.


---------- Forwarded message ----------
From:  <s...@apache.org>
Date: 16 April 2014 17:22
Subject: svn commit: r1587961 - /commons/proper/net/trunk/pom.xml
To: comm...@commons.apache.org


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

@@ -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>

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscr...@commons.apache.org
For additional commands, e-mail: dev-h...@commons.apache.org

Reply via email to