JDK8 and Maven compability (#210)

Disable doclint
This commit is contained in:
Pengcheng Huang 2016-06-13 17:41:01 +08:00 committed by Medcl
parent f1d59921fe
commit 4373cf7c94

11
pom.xml
View File

@ -155,4 +155,15 @@
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>disable-java8-doclint</id>
<activation>
<jdk>[1.8,)</jdk>
</activation>
<properties>
<additionalparam>-Xdoclint:none</additionalparam>
</properties>
</profile>
</profiles>
</project>