You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@stanbol.apache.org by rh...@apache.org on 2016/09/13 12:11:53 UTC

svn commit: r1760531 - /stanbol/tags/apache-stanbol-1.0.0/parent/pom.xml

Author: rharo
Date: Tue Sep 13 12:11:52 2016
New Revision: 1760531

URL: http://svn.apache.org/viewvc?rev=1760531&view=rev
Log:
STANBOL-1453: Preventing Javadoc Errors with Java 8

Modified:
    stanbol/tags/apache-stanbol-1.0.0/parent/pom.xml

Modified: stanbol/tags/apache-stanbol-1.0.0/parent/pom.xml
URL: http://svn.apache.org/viewvc/stanbol/tags/apache-stanbol-1.0.0/parent/pom.xml?rev=1760531&r1=1760530&r2=1760531&view=diff
==============================================================================
--- stanbol/tags/apache-stanbol-1.0.0/parent/pom.xml (original)
+++ stanbol/tags/apache-stanbol-1.0.0/parent/pom.xml Tue Sep 13 12:11:52 2016
@@ -1832,6 +1832,22 @@
               </execution>
             </executions>
           </plugin>
+          <plugin>
+            <artifactId>maven-javadoc-plugin</artifactId>
+            <version>2.10.3</version>
+            <executions>
+             <execution>
+               <id>attach-javadocs</id>
+               <goals>
+                 <goal>jar</goal>
+                </goals>
+                <configuration>
+                <!-- Deactivate DocLint errors with Java 8 (see http://openjdk.java.net/jeps/172 )-->
+                 <additionalparam>-Xdoclint:none</additionalparam>
+                </configuration>
+              </execution>
+            </executions>
+           </plugin>
         </plugins>
       </build>
     </profile>