Skip to content

Commit 9243af6

Browse files
author
Wolter Eldering
committed
Disable javadoc validation on jdk8
1 parent b0cce92 commit 9243af6

File tree

1 file changed

+23
-1
lines changed

1 file changed

+23
-1
lines changed

pom.xml

Lines changed: 23 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -303,5 +303,27 @@
303303
<url>http://maven.springframework.org/milestone</url>
304304
</repository>
305305
</repositories>
306-
306+
307+
<profiles>
308+
<profile>
309+
<activation>
310+
<jdk>1.8</jdk>
311+
</activation>
312+
<build>
313+
<pluginManagement>
314+
<plugins>
315+
<plugin>
316+
<groupId>org.apache.maven.plugins</groupId>
317+
<artifactId>maven-javadoc-plugin</artifactId>
318+
<version>2.9</version>
319+
<configuration>
320+
<additionalparam>-Xdoclint:none</additionalparam>
321+
</configuration>
322+
</plugin>
323+
</plugins>
324+
</pluginManagement>
325+
</build>
326+
</profile>
327+
</profiles>
328+
307329
</project>

0 commit comments

Comments
 (0)