aboutsummaryrefslogtreecommitdiff
path: root/antlr-complete/pom.xml
diff options
context:
space:
mode:
Diffstat (limited to 'antlr-complete/pom.xml')
-rw-r--r--antlr-complete/pom.xml18
1 files changed, 13 insertions, 5 deletions
diff --git a/antlr-complete/pom.xml b/antlr-complete/pom.xml
index aad3c68..2bd9d83 100644
--- a/antlr-complete/pom.xml
+++ b/antlr-complete/pom.xml
@@ -17,7 +17,7 @@
<parent>
<groupId>org.antlr</groupId>
<artifactId>antlr-master</artifactId>
- <version>3.5.2</version>
+ <version>3.5.3</version>
</parent>
<url>http://antlr.org/</url>
@@ -57,9 +57,7 @@
</dependencies>
<build>
-
<plugins>
-
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
@@ -123,12 +121,22 @@
</executions>
</plugin>
- <plugin>
+ <plugin> <!-- create javadoc jar -->
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
+ <version>3.3.1</version>
<configuration>
- <includeDependencySources>true</includeDependencySources>
+ <javadocVersion>1.8</javadocVersion>
+ <failOnError>false</failOnError>
</configuration>
+ <executions>
+ <execution>
+ <phase>deploy</phase>
+ <goals>
+ <goal>javadoc</goal>
+ </goals>
+ </execution>
+ </executions>
</plugin>
</plugins>