You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@systemds.apache.org by ar...@apache.org on 2020/09/26 12:09:10 UTC

[systemds] branch master updated: [SYSTEMDS-2667] Fix groupid in pom

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

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


The following commit(s) were added to refs/heads/master by this push:
     new a2c17e9  [SYSTEMDS-2667] Fix groupid in pom
a2c17e9 is described below

commit a2c17e90ff7cd6930648fd7b4a03403f88b81f28
Author: arnabp <ar...@tugraz.at>
AuthorDate: Sat Sep 26 13:51:19 2020 +0200

    [SYSTEMDS-2667] Fix groupid in pom
---
 dev/release/deploy.sh | 3 ++-
 pom.xml               | 2 +-
 2 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/dev/release/deploy.sh b/dev/release/deploy.sh
index 9d9d842..b6cc1f3 100644
--- a/dev/release/deploy.sh
+++ b/dev/release/deploy.sh
@@ -58,7 +58,8 @@ function checkout_code {
 checkout_code
 # Remove SNAPSHOT from the version in pom
 eval cd $RELEASE_WORK_DIR/systemds
-sed -i "s/<version>$RELEASE_VERSION-SNAPSHOT<\/version>/<version>$RELEASE_VERSION<\/version>/" pom.xml
+#sed -i "s/<version>$RELEASE_VERSION-SNAPSHOT<\/version>/<version>$RELEASE_VERSION<\/version>/" pom.xml
+sed -i "s/<version>$DEVELOPMENT_VERSION<\/version>/<version>$RELEASE_VERSION<\/version>/" pom.xml
 GPG_OPTS="-Dgpg.keyname=$GPG_KEYID -Dgpg.passphrase=$GPG_PASSPHRASE"
 # Deploy to /target folder for the next job to pick the artifacts up for there
 CMD="$MVN $PUBLISH_PROFILES deploy \
diff --git a/pom.xml b/pom.xml
index 2811fb2..403a345 100644
--- a/pom.xml
+++ b/pom.xml
@@ -24,7 +24,7 @@
 		<artifactId>apache</artifactId>
 		<version>18</version>
 	</parent>
-	<groupId>org.apache.sysds</groupId>
+	<groupId>org.apache.systemds</groupId>
 	<version>2.1.0-SNAPSHOT</version>
 	<artifactId>systemds</artifactId>
 	<packaging>jar</packaging>