Repository: incubator-tephra Updated Branches: refs/heads/master 174c33253 -> 161062edd
(TEHPRA-260) Build should not fail on Javadoc errors This closes #57 from GitHub. Signed-off-by: anew <[email protected]> Project: http://git-wip-us.apache.org/repos/asf/incubator-tephra/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-tephra/commit/161062ed Tree: http://git-wip-us.apache.org/repos/asf/incubator-tephra/tree/161062ed Diff: http://git-wip-us.apache.org/repos/asf/incubator-tephra/diff/161062ed Branch: refs/heads/master Commit: 161062edd2eb3239a9afc3dba93c42445924d803 Parents: 174c332 Author: anew <[email protected]> Authored: Wed Sep 13 00:38:26 2017 -0700 Committer: anew <[email protected]> Committed: Wed Sep 13 00:51:21 2017 -0700 ---------------------------------------------------------------------- pom.xml | 8 ++++++++ 1 file changed, 8 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-tephra/blob/161062ed/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index 71b54ad..b273f9d 100644 --- a/pom.xml +++ b/pom.xml @@ -522,6 +522,14 @@ <artifactId>maven-checkstyle-plugin</artifactId> <version>2.12.1</version> </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-javadoc-plugin</artifactId> + <configuration> + <failOnError>false</failOnError> + </configuration> + </plugin> + </plugins> </build>
