Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias Sohn2016-09-21 15:01:13 +0000
committerMatthias Sohn2016-09-21 15:19:30 +0000
commitc10a7e7931473f197ae30669840942413db6b6cd (patch)
tree3692e2098d608bc345f452debf4022c3fa9adfa4
parentcb617e7ffc7600a3d5978b1f870ff114b4486976 (diff)
downloadjgit-c10a7e7931473f197ae30669840942413db6b6cd.tar.gz
jgit-c10a7e7931473f197ae30669840942413db6b6cd.tar.xz
jgit-c10a7e7931473f197ae30669840942413db6b6cd.zip
Turn off doclint also during Maven site generation
Change-Id: Iefc77114de21e7a101642f5c3a8f0fb317886ba2 Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
-rw-r--r--pom.xml11
1 files changed, 11 insertions, 0 deletions
diff --git a/pom.xml b/pom.xml
index 6721f30442..3a9a6c6796 100644
--- a/pom.xml
+++ b/pom.xml
@@ -689,6 +689,17 @@
</plugin>
</plugins>
</build>
+ <reporting>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-javadoc-plugin</artifactId>
+ <configuration>
+ <additionalparam>-Xdoclint:-missing</additionalparam>
+ </configuration>
+ </plugin>
+ </plugins>
+ </reporting>
</profile>
<profile>
<id>static-checks</id>

Back to the top