You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ws.apache.org by co...@apache.org on 2015/10/02 14:23:24 UTC

svn commit: r1706381 - /webservices/wss4j/trunk/pom.xml

Author: coheigea
Date: Fri Oct  2 12:23:23 2015
New Revision: 1706381

URL: http://svn.apache.org/viewvc?rev=1706381&view=rev
Log:
Fix Javadoc for JDK 1.8

Modified:
    webservices/wss4j/trunk/pom.xml

Modified: webservices/wss4j/trunk/pom.xml
URL: http://svn.apache.org/viewvc/webservices/wss4j/trunk/pom.xml?rev=1706381&r1=1706380&r2=1706381&view=diff
==============================================================================
--- webservices/wss4j/trunk/pom.xml (original)
+++ webservices/wss4j/trunk/pom.xml Fri Oct  2 12:23:23 2015
@@ -341,6 +341,28 @@
                 <pmd.skip>true</pmd.skip>
             </properties>
         </profile>
+        <profile>
+            <id>jdk18</id>
+            <activation>
+                <jdk>1.8</jdk>
+            </activation>
+            <build>
+                <pluginManagement>
+                    <plugins>
+                        <plugin>
+                            <groupId>org.apache.maven.plugins</groupId>
+                            <artifactId>maven-javadoc-plugin</artifactId>
+                            <configuration>
+                                <additionalJOptions>
+                                    <additionalJOption>-Xdoclint:none</additionalJOption>
+                                </additionalJOptions>
+                            </configuration>
+                        </plugin>
+                    </plugins>
+                </pluginManagement>
+            </build>
+         </profile>
+
     </profiles>
 
     <reporting>