Skip to content

Commit 021a410

Browse files
authored
Merge pull request #488 from GwtMaterialDesign/release_2.0
Maven java doc plugin fixed
2 parents 58f6feb + 6a5ebb5 commit 021a410

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

pom.xml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -145,6 +145,30 @@
145145
</execution>
146146
</executions>
147147
</plugin>
148+
<plugin>
149+
<groupId>org.apache.maven.plugins</groupId>
150+
<artifactId>maven-javadoc-plugin</artifactId>
151+
<version>2.10.3</version>
152+
<configuration>
153+
<!-- comment out for now because doesn't work on JDK < 8 -->
154+
<!--<additionalparam>-Xdoclint:none</additionalparam>-->
155+
<encoding>${project.build.sourceEncoding}</encoding>
156+
<locale>en</locale>
157+
<linksource>true</linksource>
158+
<validateLinks>true</validateLinks>
159+
<links>
160+
<link>https://github.com/gwtproject/gwt/tree/master/doc/validation-package-list</link>
161+
</links>
162+
</configuration>
163+
<executions>
164+
<execution>
165+
<phase>package</phase>
166+
<goals>
167+
<goal>jar</goal>
168+
</goals>
169+
</execution>
170+
</executions>
171+
</plugin>
148172
<plugin>
149173
<groupId>org.apache.maven.plugins</groupId>
150174
<artifactId>maven-release-plugin</artifactId>

0 commit comments

Comments
 (0)