Skip to content

Commit

Permalink
Making builds fail if Javadoc is not generated successfully (#409)
Browse files Browse the repository at this point in the history
* Making builds fail if Javadoc is not generated successfully

- Removing <failOnError>false</failOnError>  from configuration for JavaDoc in pom.xml

* Disable doclint to fix javadoc builds

- Updating Javadoc maven plugin version to 3.4.1 (match with microprofile-parent project)
- Disabling doclint to match with microprofile-parent project and fix build break
  • Loading branch information
jakub-pomykala authored Feb 12, 2024
1 parent c8519db commit e692d10
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@
<plugins>
<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.0.1</version>
<version>3.4.1</version>
<executions>
<execution>
<id>aggregate-javadoc</id>
Expand All @@ -138,7 +138,7 @@
</execution>
</executions>
<configuration>
<failOnError>false</failOnError>
<doclint>none</doclint>
<additionalDependencies>
<additionalDependency>
<groupId>org.osgi</groupId>
Expand Down

0 comments on commit e692d10

Please sign in to comment.