summaryrefslogtreecommitdiffstats
path: root/pom.xml
diff options
context:
space:
mode:
authorMatthias Sohn <matthias.sohn@sap.com>2014-09-23 00:27:46 +0200
committerMatthias Sohn <matthias.sohn@sap.com>2014-10-12 22:21:00 +0200
commit05e530c56c373ac94a8cd5d41d62a8af3a529e22 (patch)
tree699f6ecbeb928150b2c41b143f4fd222d0d671d9 /pom.xml
parent6ed6494b8ac813ec7d64da483d5f74745edae318 (diff)
downloadjgit-05e530c56c373ac94a8cd5d41d62a8af3a529e22.tar.gz
jgit-05e530c56c373ac94a8cd5d41d62a8af3a529e22.zip
[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> (cherry picked from commit 54dc4b20b3e084c9c470c8211810dff008b6f0fc)
Diffstat (limited to 'pom.xml')
-rw-r--r--pom.xml17
1 files changed, 17 insertions, 0 deletions
diff --git a/pom.xml b/pom.xml
index 54a98d96c9..b829733536 100644
--- a/pom.xml
+++ b/pom.xml
@@ -556,6 +556,23 @@
</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>
<plugins>