Skip to content

Commit

Permalink
[SEDONA-283] Upgrade maven-deploy-plugin to prevent artifacts from be…
Browse files Browse the repository at this point in the history
…ing deployed twice (#840)
  • Loading branch information
Kontinuation authored May 24, 2023
1 parent 880b7cd commit b7b779c
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -341,6 +341,20 @@
<build>
<pluginManagement>
<plugins>
<plugin>
<!-- Set version to 3.0.0 to get rid of the deploying artifacts twice problem in older versions -->
<artifactId>maven-deploy-plugin</artifactId>
<version>3.0.0</version>
<executions>
<execution>
<id>default-deploy</id>
<phase>deploy</phase>
<goals>
<goal>deploy</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>net.alchim31.maven</groupId>
<artifactId>scala-maven-plugin</artifactId>
Expand Down

0 comments on commit b7b779c

Please sign in to comment.