Skip to content

Commit

Permalink
Fix javadoc plugin in POM
Browse files Browse the repository at this point in the history
  • Loading branch information
tastybento committed Oct 14, 2023
1 parent 27171d8 commit 1805e94
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -224,15 +224,19 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.0.1</version>
<version>3.4.1</version>
<configuration>
<show>public</show>
<source>${java.version}</source>
<show>private</show>
<quiet>true</quiet>
<failOnError>false</failOnError>
<additionalJOption>-Xdoclint:none</additionalJOption>
<javadocExecutable>${java.home}/bin/javadoc</javadocExecutable>
</configuration>
<executions>
<execution>
<id>attach-javadocs</id>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
Expand Down

0 comments on commit 1805e94

Please sign in to comment.