Skip to content

Commit

Permalink
Merge pull request #338 from v-xiangs/validates-javadoc-by-default
Browse files Browse the repository at this point in the history
validates javadoc for every commit
  • Loading branch information
v-nisidh authored Jun 16, 2017
2 parents 369e913 + 6aa193e commit 17aee6f
Showing 1 changed file with 21 additions and 1 deletion.
22 changes: 21 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -280,7 +280,27 @@
</goals>
</execution>
</executions>
</plugin>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.10.4</version>

<configuration>
<failOnError>true</failOnError>
</configuration>

<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>

</project>

0 comments on commit 17aee6f

Please sign in to comment.