Author: britter
Date: Wed Jul 6 14:42:07 2016
New Revision: 1751692
URL: http://svn.apache.org/viewvc?rev=1751692&view=rev
Log:
Deactivate doclint for Java 8+
Modified:
commons/proper/io/trunk/pom.xml
Modified: commons/proper/io/trunk/pom.xml
URL:
http://svn.apache.org/viewvc/commons/proper/io/trunk/pom.xml?rev=1751692&r1=1751691&r2=1751692&view=diff
==============================================================================
--- commons/proper/io/trunk/pom.xml (original)
+++ commons/proper/io/trunk/pom.xml Wed Jul 6 14:42:07 2016
@@ -29,7 +29,7 @@
<inceptionYear>2002</inceptionYear>
<description>
-The Apache Commons IO library contains utility classes, stream
implementations, file filters,
+The Apache Commons IO library contains utility classes, stream
implementations, file filters,
file comparators, endian transformation classes, and much more.
</description>
@@ -273,7 +273,7 @@ file comparators, endian transformation
<classpathDependencyExclude>xerces:xercesImpl</classpathDependencyExclude>
</classpathDependencyExcludes>
<forkCount>1</forkCount>
- <reuseForks>false</reuseForks>
+ <reuseForks>false</reuseForks>
<!-- limit memory size see IO-161 -->
<argLine>-Xmx25M</argLine>
<includes>
@@ -406,5 +406,14 @@ file comparators, endian transformation
</plugins>
</build>
</profile>
+ <profile>
+ <id>jdk8-javadoc</id>
+ <activation>
+ <jdk>[1.8,)</jdk>
+ </activation>
+ <properties>
+ <additionalparam>-Xdoclint:none</additionalparam>
+ </properties>
+ </profile>
</profiles>
</project>