You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by ah...@apache.org on 2019/11/08 18:51:37 UTC

[commons-numbers] 10/32: Fixed javadoc plugin configuration for default target 1.8.

This is an automated email from the ASF dual-hosted git repository.

aherbert pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-numbers.git

commit e9ac506af281402b42a5f9d73822d26b10e575e4
Author: Alex Herbert <ah...@apache.org>
AuthorDate: Wed Nov 6 23:13:42 2019 +0000

    Fixed javadoc plugin configuration for default target 1.8.
---
 pom.xml | 24 +++---------------------
 1 file changed, 3 insertions(+), 21 deletions(-)

diff --git a/pom.xml b/pom.xml
index e6c9358..360ce39 100644
--- a/pom.xml
+++ b/pom.xml
@@ -97,10 +97,9 @@
         Temporary workaround?
     -->
     <commons.release.name>commons-numbers-${project.version}</commons.release.name>
-    <!-- Java8+ requires additional Javadoc qualifier for MathJax (default to empty). -->
-    <allowscript.javadoc.qualifier></allowscript.javadoc.qualifier>
-    <!-- Invalid flag for old javadoc versions (default to empty). -->
-    <doclint.javadoc.qualifier></doclint.javadoc.qualifier>
+    <!-- Java8+ requires additional Javadoc qualifier for scripts such as MathJax -->
+    <allowscript.javadoc.qualifier>--allow-script-in-comments</allowscript.javadoc.qualifier>
+    <doclint.javadoc.qualifier>-Xdoclint:all</doclint.javadoc.qualifier>
   </properties>
 
   <modules>
@@ -649,23 +648,6 @@
         </plugins>
       </build>
     </profile>
-
-    <profile>
-      <id>javadoc8</id>
-      <activation><jdk>[1.8,)</jdk></activation>
-      <properties>
-        <!-- Java8+ requires additional Javadoc qualifier for scripts such as MathJax -->
-        <allowscript.javadoc.qualifier>--allow-script-in-comments</allowscript.javadoc.qualifier>
-      </properties>
-    </profile>
-    <profile>
-      <id>javadoc7</id>
-      <activation><jdk>[1.7,)</jdk></activation>
-      <properties>
-        <!-- Invalid flag in earlier versions of javadoc -->
-        <doclint.javadoc.qualifier>-Xdoclint:all</doclint.javadoc.qualifier>
-      </properties>
-    </profile>
   </profiles>
 
   <developers>