Commit dd3ca2f81e24927ca59ea6a45f070e3288959a7e
1 parent
737546974f
Exists in
master
Fixed JavaDoc generation for JDK8
Showing
1 changed file
with
20 additions
and
0 deletions
Show diff stats
pom.xml
... | ... | @@ -105,4 +105,24 @@ |
105 | 105 | </plugins> |
106 | 106 | </build> |
107 | 107 | |
108 | + <profiles> | |
109 | + <profile> | |
110 | + <id>doclint-java8-max</id> | |
111 | + <activation> | |
112 | + <jdk>[1.8,)</jdk> | |
113 | + </activation> | |
114 | + <build> | |
115 | + <plugins> | |
116 | + <plugin> | |
117 | + <artifactId>maven-javadoc-plugin</artifactId> | |
118 | + <configuration> | |
119 | + <!-- <additionalparam>-Xmaxwarns 10000 -Xmaxerrs 10000</additionalparam> to detect more than 100 error --> | |
120 | + <additionalparam>-Xdoclint:none</additionalparam> | |
121 | + </configuration> | |
122 | + </plugin> | |
123 | + </plugins> | |
124 | + </build> | |
125 | + </profile> | |
126 | + </profiles> | |
127 | + | |
108 | 128 | </project> | ... | ... |