Skip to content

Commit 092bc1c

Browse files
committed
Deactivate doclint for Java 8+
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/io/trunk@1751692 13f79535-47bb-0310-9956-ffa450edef68
1 parent c6e63f2 commit 092bc1c

1 file changed

Lines changed: 11 additions & 2 deletions

File tree

pom.xml

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929

3030
<inceptionYear>2002</inceptionYear>
3131
<description>
32-
The Apache Commons IO library contains utility classes, stream implementations, file filters,
32+
The Apache Commons IO library contains utility classes, stream implementations, file filters,
3333
file comparators, endian transformation classes, and much more.
3434
</description>
3535

@@ -273,7 +273,7 @@ file comparators, endian transformation classes, and much more.
273273
<classpathDependencyExclude>xerces:xercesImpl</classpathDependencyExclude>
274274
</classpathDependencyExcludes>
275275
<forkCount>1</forkCount>
276-
<reuseForks>false</reuseForks>
276+
<reuseForks>false</reuseForks>
277277
<!-- limit memory size see IO-161 -->
278278
<argLine>-Xmx25M</argLine>
279279
<includes>
@@ -406,5 +406,14 @@ file comparators, endian transformation classes, and much more.
406406
</plugins>
407407
</build>
408408
</profile>
409+
<profile>
410+
<id>jdk8-javadoc</id>
411+
<activation>
412+
<jdk>[1.8,)</jdk>
413+
</activation>
414+
<properties>
415+
<additionalparam>-Xdoclint:none</additionalparam>
416+
</properties>
417+
</profile>
409418
</profiles>
410419
</project>

0 commit comments

Comments
 (0)