You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sedona.apache.org by ji...@apache.org on 2023/05/24 07:11:32 UTC

[sedona] branch master updated: [SEDONA-283] Upgrade maven-deploy-plugin to prevent artifacts from being deployed twice (#840)

This is an automated email from the ASF dual-hosted git repository.

jiayu pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/sedona.git


The following commit(s) were added to refs/heads/master by this push:
     new b7b779cf [SEDONA-283] Upgrade maven-deploy-plugin to prevent artifacts from being deployed twice (#840)
b7b779cf is described below

commit b7b779cf89eaada4837fb15682e9b5a32d03e087
Author: Kristin Cowalcijk <mo...@yeah.net>
AuthorDate: Wed May 24 15:11:26 2023 +0800

    [SEDONA-283] Upgrade maven-deploy-plugin to prevent artifacts from being deployed twice (#840)
---
 pom.xml | 14 ++++++++++++++
 1 file changed, 14 insertions(+)

diff --git a/pom.xml b/pom.xml
index 3a602ebc..c44256d5 100644
--- a/pom.xml
+++ b/pom.xml
@@ -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>