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 2020/12/28 09:13:44 UTC

[incubator-sedona] branch master updated: Use a maven plugin to upload a generated POM file which has the artifact ID variable resolved

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/incubator-sedona.git


The following commit(s) were added to refs/heads/master by this push:
     new 530ebe9  Use a maven plugin to upload a generated POM file which has the artifact ID variable resolved
530ebe9 is described below

commit 530ebe930dd6f890066ce1033877808fb31c387e
Author: Jia Yu <ji...@apache.org>
AuthorDate: Mon Dec 28 01:13:34 2020 -0800

    Use a maven plugin to upload a generated POM file which has the artifact ID variable resolved
---
 pom.xml | 15 +++++++++++----
 1 file changed, 11 insertions(+), 4 deletions(-)

diff --git a/pom.xml b/pom.xml
index ba7cef9..f74e23f 100644
--- a/pom.xml
+++ b/pom.xml
@@ -391,14 +391,21 @@
                 </configuration>
             </plugin>
             <plugin>
-                <groupId>com.sap.prd.mobile.ios.maven.plugins</groupId>
-                <artifactId>resolve-pom-maven-plugin</artifactId>
+                <groupId>io.paradoxical</groupId>
+                <artifactId>resolved-pom-maven-plugin</artifactId>
                 <version>1.0</version>
+                <configuration>
+                    <properties>
+                        <spark.compat.version>${spark.compat.version}</spark.compat.version>
+                        <scala.compat.version>${scala.compat.version}</scala.compat.version>
+                    </properties>
+                </configuration>
                 <executions>
                     <execution>
-                        <id>resolve-pom-props</id>
+                        <id>resolve-my-pom</id>
+                        <phase>initialize</phase>
                         <goals>
-                            <goal>resolve-pom-props</goal>
+                            <goal>resolve-pom</goal>
                         </goals>
                     </execution>
                 </executions>