Skip to content

Commit 4ca7ea4

Browse files
authored
Merge pull request #191 from ruromero/skip-deploy
chore: skip deployment upon release
2 parents 155936e + ce87900 commit 4ca7ea4

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

pom.xml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@
4646
<maven-release-plugin.version>3.0.1</maven-release-plugin.version>
4747
<spotless-maven-plugin.version>2.37.0</spotless-maven-plugin.version>
4848
<surefire-plugin.version>3.0.0</surefire-plugin.version>
49+
<deploy-plugin.version>3.1.1</deploy-plugin.version>
4950

5051
<!-- Dependencies -->
5152
<sentry.version>1.7.27</sentry.version>
@@ -458,6 +459,7 @@
458459
<version>${maven-release-plugin.version}</version>
459460
<configuration>
460461
<arguments>-Pprepare-deployment,sign-deployment</arguments>
462+
<tagNameFormat>v@{project.version}</tagNameFormat>
461463
<scmCommentPrefix>build(release): [skip ci]</scmCommentPrefix>
462464
</configuration>
463465
</plugin>
@@ -478,6 +480,14 @@
478480
<flattenMode>ossrh</flattenMode>
479481
</configuration>
480482
</plugin>
483+
<plugin>
484+
<groupId>org.apache.maven.plugins</groupId>
485+
<artifactId>maven-deploy-plugin</artifactId>
486+
<version>${deploy-plugin.version}</version>
487+
<configuration>
488+
<skip>true</skip>
489+
</configuration>
490+
</plugin>
481491
</plugins>
482492
</build>
483493
<profiles>

0 commit comments

Comments
 (0)