Remove unused stage release script 61/77761/1
authorThanh Ha <thanh.ha@linuxfoundation.org>
Wed, 14 Nov 2018 06:54:54 +0000 (14:54 +0800)
committerThanh Ha <thanh.ha@linuxfoundation.org>
Wed, 14 Nov 2018 06:54:54 +0000 (14:54 +0800)
Change-Id: I06ca5c77bf464b3d9c19515a7501a335cae12a03
Signed-off-by: Thanh Ha <thanh.ha@linuxfoundation.org>
jjb/stage-release.sh [deleted file]

diff --git a/jjb/stage-release.sh b/jjb/stage-release.sh
deleted file mode 100644 (file)
index 81fa33a..0000000
+++ /dev/null
@@ -1,27 +0,0 @@
-#!/bin/bash
-# SPDX-License-Identifier: EPL-1.0
-##############################################################################
-# Copyright (c) 2016 The Linux Foundation and others.
-#
-# All rights reserved. This program and the accompanying materials
-# are made available under the terms of the Eclipse Public License v1.0
-# which accompanies this distribution, and is available at
-# http://www.eclipse.org/legal/epl-v10.html
-##############################################################################
-
-# Assuming that mvn deploy created the hide/from/pom/files/stage directory.
-cd hide/from/pom/files || exit 1
-mkdir -p m2repo/org/opendaylight/
-
-rsync -avz --exclude 'maven-metadata*' \
-           --exclude '_remote.repositories' \
-           --exclude 'resolver-status.properties' \
-           "stage/org/opendaylight/$PROJECT" m2repo/org/opendaylight/
-
-mvn org.sonatype.plugins:nexus-staging-maven-plugin:1.6.2:deploy-staged-repository \
-    -DrepositoryDirectory="$(pwd)/m2repo" \
-    -DnexusUrl=https://nexus.opendaylight.org/ \
-    -DstagingProfileId="$STAGING_PROFILE_ID" \
-    -DserverId="opendaylight-staging" \
-    -s "$SETTINGS_FILE" \
-    -gs "$GLOBAL_SETTINGS_FILE" | tee "$WORKSPACE/deploy-staged-repository.log"