Skip to content

Commit

Permalink
Don't fail build while building javadocs
Browse files Browse the repository at this point in the history
Lombok annotations are causing javadocs failure
  • Loading branch information
rkosegi committed Jul 4, 2022
1 parent e7917f7 commit b2f31f5
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,17 @@
</dependency>
</dependencies>
</dependencyManagement>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<configuration>
<failOnError>false</failOnError>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.jenkins-ci.plugins</groupId>
Expand Down

0 comments on commit b2f31f5

Please sign in to comment.