Skip to content

Commit

Permalink
Merge pull request #488 from GwtMaterialDesign/release_2.0
Browse files Browse the repository at this point in the history
Maven java doc plugin fixed
  • Loading branch information
kevzlou7979 committed Oct 30, 2016
2 parents 58f6feb + 6a5ebb5 commit 021a410
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions pom.xml
Expand Up @@ -145,6 +145,30 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.10.3</version>
<configuration>
<!-- comment out for now because doesn't work on JDK < 8 -->
<!--<additionalparam>-Xdoclint:none</additionalparam>-->
<encoding>${project.build.sourceEncoding}</encoding>
<locale>en</locale>
<linksource>true</linksource>
<validateLinks>true</validateLinks>
<links>
<link>https://github.com/gwtproject/gwt/tree/master/doc/validation-package-list</link>
</links>
</configuration>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
Expand Down

0 comments on commit 021a410

Please sign in to comment.