Browse Source

[Java 8] Configure doclint to accept missing descriptions

We avoid trivial descriptions in JavaDoc. Hence configure
doclint to not fail on missing descriptions.

Change-Id: Iba3d5aec18cc7d7f43e53fa6789f0dede9996fb7
Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
tags/v3.5.0.201409260305-r
Matthias Sohn 9 years ago
parent
commit
54dc4b20b3
1 changed files with 17 additions and 0 deletions
  1. 17
    0
      pom.xml

+ 17
- 0
pom.xml View File

@@ -555,6 +555,23 @@
<module>org.eclipse.jgit.java7.test</module>
</modules>
</profile>
<profile>
<id>jgit.java8</id>
<activation>
<jdk>[1.8,)</jdk>
</activation>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<configuration>
<additionalparam>-Xdoclint:-missing</additionalparam>
</configuration>
</plugin>
</plugins>
</build>
</profile>
<profile>
<id>static-checks</id>
<build>

Loading…
Cancel
Save