You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@commons.apache.org by Benedikt Ritter <br...@apache.org> on 2016/06/07 18:32:06 UTC

Fwd: svn commit: r1747292 - /commons/proper/bcel/trunk/pom.xml

Is this something worth adding to commons parent?

---------- Forwarded message ---------
From: <br...@apache.org>
Date: Di., 7. Juni 2016 um 20:31 Uhr
Subject: svn commit: r1747292 - /commons/proper/bcel/trunk/pom.xml
To: <co...@commons.apache.org>


Author: britter
Date: Tue Jun  7 18:31:37 2016
New Revision: 1747292

URL: http://svn.apache.org/viewvc?rev=1747292&view=rev
Log:
Only deactivate DocLint on JDK 8+

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

Modified: commons/proper/bcel/trunk/pom.xml
URL:
http://svn.apache.org/viewvc/commons/proper/bcel/trunk/pom.xml?rev=1747292&r1=1747291&r2=1747292&view=diff
==============================================================================
--- commons/proper/bcel/trunk/pom.xml (original)
+++ commons/proper/bcel/trunk/pom.xml Tue Jun  7 18:31:37 2016
@@ -58,7 +58,6 @@
     <checkstyle.plugin.version>2.17</checkstyle.plugin.version>
     <!-- Latest Clirr Plugin version (2.7) causes NPE -->
     <commons.clirr.version>2.6.1</commons.clirr.version>
-    <additionalparam>-Xdoclint:none</additionalparam>
   </properties>

   <!-- Cannot be added to Commons Parent, see
https://issues.apache.org/jira/browse/COMMONSSITE-26 -->
@@ -501,6 +500,16 @@
         </plugins>
       </build>
     </profile>
+
+    <profile>
+      <id>jdk8-javadoc</id>
+      <activation>
+        <jdk>[1.8,)</jdk>
+      </activation>
+      <properties>
+        <additionalparam>-Xdoclint:none</additionalparam>
+      </properties>
+    </profile>
   </profiles>

 </project>