You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@uima.apache.org by cw...@apache.org on 2018/02/13 15:02:33 UTC

svn commit: r1824149 - /uima/uima-ducc/trunk/uima-ducc-parent/pom.xml

Author: cwiklik
Date: Tue Feb 13 15:02:33 2018
New Revision: 1824149

URL: http://svn.apache.org/viewvc?rev=1824149&view=rev
Log:
UIMA-4524 disabled javadoc strict checking

Modified:
    uima/uima-ducc/trunk/uima-ducc-parent/pom.xml

Modified: uima/uima-ducc/trunk/uima-ducc-parent/pom.xml
URL: http://svn.apache.org/viewvc/uima/uima-ducc/trunk/uima-ducc-parent/pom.xml?rev=1824149&r1=1824148&r2=1824149&view=diff
==============================================================================
--- uima/uima-ducc/trunk/uima-ducc-parent/pom.xml (original)
+++ uima/uima-ducc/trunk/uima-ducc-parent/pom.xml Tue Feb 13 15:02:33 2018
@@ -821,6 +821,7 @@ ${uimaDUCCNoticeText}
               <id>attach-javadocs</id>
               <configuration>
                 <source>${maven.compiler.source}</source>
+                <additionalparam>${javadoc.opts}</additionalparam>
               </configuration>
             </execution>
             <execution>
@@ -888,7 +889,15 @@ ${uimaDUCCNoticeText}
 
 
 	<profiles>
-
+        <profile>
+           <id>doclint-java8-disable</id>
+           <activation>
+              <jdk>[1.8,)</jdk>
+           </activation>
+           <properties>
+              <javadoc.opts>-Xdoclint:none</javadoc.opts>
+           </properties>
+        </profile>
 		<!--profile>
                    currently disabled. It packages java source files but doesnt package xml and other resource files when building
                    causing runtime problems.