Skip to content

Commit

Permalink
XIVY-13820 fix: tagNameFormat not semantic
Browse files Browse the repository at this point in the history
- maven-release-plugin config in ossrhDeploy profile is inactive during maven-release-plugin:prepare runs
  • Loading branch information
ivy-rew committed Jun 6, 2024
1 parent c473c5a commit 3dfde1a
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -350,6 +350,16 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>3.0.1</version>
<configuration>
<tagNameFormat>v@{project.version}</tagNameFormat>
<releaseProfiles>release</releaseProfiles>
<goals>deploy site-deploy</goals>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
Expand All @@ -376,16 +386,6 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>3.0.1</version>
<configuration>
<tagNameFormat>v@{project.version}</tagNameFormat>
<releaseProfiles>release</releaseProfiles>
<goals>deploy site-deploy</goals>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
Expand Down

0 comments on commit 3dfde1a

Please sign in to comment.