diff options
author | Matthias Sohn <matthias.sohn@sap.com> | 2014-09-23 00:27:46 +0200 |
---|---|---|
committer | Matthias Sohn <matthias.sohn@sap.com> | 2014-10-12 22:21:00 +0200 |
commit | 05e530c56c373ac94a8cd5d41d62a8af3a529e22 (patch) | |
tree | 699f6ecbeb928150b2c41b143f4fd222d0d671d9 /pom.xml | |
parent | 6ed6494b8ac813ec7d64da483d5f74745edae318 (diff) | |
download | jgit-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.xml | 17 |
1 files changed, 17 insertions, 0 deletions
@@ -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> |