Skip to content

Commit

Permalink
#488 Maven profile to generate Javadocs in uncompressed format.
Browse files Browse the repository at this point in the history
  • Loading branch information
Vladimir Buhtoyarov committed May 6, 2024
1 parent a013988 commit 0a843dc
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 35 deletions.
35 changes: 0 additions & 35 deletions .run/Build MAVEN CENTRAL.run.xml

This file was deleted.

26 changes: 26 additions & 0 deletions bucket4j-parent/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -355,6 +355,32 @@
</plugins>
</reporting>
</profile>
<profile>
<id>javadocs</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<build>
<plugins>
<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.6.3</version>
<executions>
<execution>
<id>generate HTML</id>
<phase>package</phase>
<goals>
<goal>aggregate</goal>
</goals>
</execution>
</executions>
<configuration>
<additionalOptions>-Xdoclint:none</additionalOptions>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>

<dependencies>
Expand Down
1 change: 1 addition & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@
<!-- <skipNexusStagingDeployMojo>true</skipNexusStagingDeployMojo>-->
<!-- <maven.deploy.skip>true</maven.deploy.skip>-->
<enforcer.skip>true</enforcer.skip>
<maven.javadoc.skip>true</maven.javadoc.skip>
</properties>

</project>

0 comments on commit 0a843dc

Please sign in to comment.