Skip to content

Commit

Permalink
Merge pull request #294 from milosimpson/docLint
Browse files Browse the repository at this point in the history
Workaround JavaDoc Plugin failing on release buids from Jenkins.
  • Loading branch information
Milo Simpson authored Dec 8, 2016
2 parents 6eae4af + 7e2ec6e commit 2cc44f8
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions parent/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,7 @@
</execution>
</executions>
</plugin>

<plugin>
<groupId>org.apache.rat</groupId>
<artifactId>apache-rat-plugin</artifactId>
Expand Down Expand Up @@ -146,6 +147,25 @@
</dependency>
</dependencies>
</plugin>

<!-- Added due to DocLint being enabled by default in Java 8; w/out this release build fails -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.10.3</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
<configuration>
<additionalparam>-Xdoclint:none</additionalparam>
<failOnError>false</failOnError>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>

Expand Down

0 comments on commit 2cc44f8

Please sign in to comment.