Fix Java related issues
[releng/builder.git] / jjb / autorelease / include-raw-autorelease-get-integration-test-variables.sh
index ff7cf11a3f5b7efc4e9691f8187cbd8ed430279e..38c8d798ae5d5af025909937ea1269f1c5e0e6a5 100644 (file)
@@ -9,8 +9,14 @@
 # http://www.eclipse.org/legal/epl-v10.html
 ##############################################################################
 
-NEXUSURL=https://nexus.opendaylight.org/staged-repos/
+NEXUSURL=https://nexus.opendaylight.org/content/repositories/
 VERSION=`grep -m1 '<version>' ${WORKSPACE}/integration/distribution/distribution-karaf/pom.xml | awk -F'[<|>]' '/version/ { printf $3 }'`
+if [ "x${VERSION}" == "x" ]; then
+    echo "Lithium or sooner, different path needs to be searched."
+    VERSION=`grep -m1 '<version>' ${WORKSPACE}/integration/distribution/distributions/karaf/pom.xml | awk -F'[<|>]' '/version/ { printf $3 }'`
+fi
+echo "VERSION: ${VERSION}"
 REPOID=`grep "Created staging repository with ID" $WORKSPACE/deploy-staged-repository.log | cut -d '"' -f2`
 
 echo BUNDLEURL=${NEXUSURL}/${REPOID}/org/opendaylight/integration/distribution-karaf/${VERSION}/distribution-karaf-${VERSION}.zip > $WORKSPACE/variables.prop
+echo "BUNDLEURL: ${BUNDLEURL}"