You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@chemistry.apache.org by ga...@apache.org on 2016/04/26 22:11:27 UTC

svn commit: r1741095 - /chemistry/opencmis/trunk/pom.xml

Author: gabriele
Date: Tue Apr 26 20:11:27 2016
New Revision: 1741095

URL: http://svn.apache.org/viewvc?rev=1741095&view=rev
Log:
workaround for CMIS-977, disabling doclint for Java 8

Modified:
    chemistry/opencmis/trunk/pom.xml

Modified: chemistry/opencmis/trunk/pom.xml
URL: http://svn.apache.org/viewvc/chemistry/opencmis/trunk/pom.xml?rev=1741095&r1=1741094&r2=1741095&view=diff
==============================================================================
--- chemistry/opencmis/trunk/pom.xml (original)
+++ chemistry/opencmis/trunk/pom.xml Tue Apr 26 20:11:27 2016
@@ -733,5 +733,17 @@
                 </plugins>
             </build>
         </profile>
+	<!-- Added profile to fix "doclint" (see http://stackoverflow.com/questions/15886209/maven-is-not-working-in-java-8-when-javadoc-tags-are-incomplete). 
+             TODO: This is a temporary solution, until we solve https://issues.apache.org/jira/browse/CMIS-977 
+        -->
+        <profile>
+            <id>disable-java8-doclint</id>
+            <activation>
+                <jdk>[1.8,)</jdk>
+            </activation>
+            <properties>
+                <additionalparam>-Xdoclint:none</additionalparam>
+            </properties>
+        </profile>
     </profiles>
 </project>