Skip to content

Commit

Permalink
Do not attempt to deploy the site upon release.
Browse files Browse the repository at this point in the history
With a "site URL" configuration in the "distribution management" section
of the POM, the Maven release plugin defaults to automatically run the
"site-deploy" goal during "release:perform". This is not desired here,
so we force the plugin to only run "deploy".
  • Loading branch information
gouttegd committed Dec 1, 2024
1 parent 8c4c63d commit 25bb83e
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -141,6 +141,9 @@
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>3.1.1</version>
<configuration>
<goals>deploy</goals>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
Expand Down

0 comments on commit 25bb83e

Please sign in to comment.