Skip to content

Commit

Permalink
Fix javadoc errors
Browse files Browse the repository at this point in the history
Turns off doclint for JDK 1.8 and above.

Closes ooxi#6
  • Loading branch information
ccamel committed Jul 31, 2019
1 parent 0188b82 commit 38a8f04
Showing 1 changed file with 17 additions and 6 deletions.
23 changes: 17 additions & 6 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,6 @@
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>



<dependencies>

<!--
Expand Down Expand Up @@ -202,12 +200,25 @@
</plugins>
</reporting>

<!--
| Default build should not sign artifacts in order to be executable on
| Travis CI
-->
<profiles>

<!--
| Profile for building with JDK 8 (and above) which turns off doclint
-->
<profile>
<id>JDK 8 Build</id>
<activation>
<jdk>[1.8,)</jdk>
</activation>
<properties>
<additionalparam>-Xdoclint:none</additionalparam>
</properties>
</profile>

<!--
| Default build should not sign artifacts in order to be executable on
| Travis CI
-->
<profile>
<id>sign</id>

Expand Down

0 comments on commit 38a8f04

Please sign in to comment.