From 135e40799545c6cb73a8854340d7eefaaa68b67e Mon Sep 17 00:00:00 2001 From: "Timoney, Dan (dt5972)" Date: Mon, 1 Jul 2019 13:08:58 -0400 Subject: Update parent poms for ODL Neon Update third party package versions to align with ODL Neon SR1. Change-Id: I82da85e6a9581726267be0f9cd64c4eb193ceda3 Issue-ID: CCSDK-1389 Signed-off-by: Timoney, Dan (dt5972) --- tools/changeVersion.sh | 20 ++++++++++++++++++++ tools/fluorine2neon.sh | 47 +++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 67 insertions(+) create mode 100755 tools/changeVersion.sh create mode 100755 tools/fluorine2neon.sh (limited to 'tools') diff --git a/tools/changeVersion.sh b/tools/changeVersion.sh new file mode 100755 index 00000000..144ca539 --- /dev/null +++ b/tools/changeVersion.sh @@ -0,0 +1,20 @@ +#! /bin/bash + +if [ $# -ne 1 ] +then + echo "Usage: $0 new-version" + exit 1 +fi + + +mvn versions:set versions:update-child-modules versions:commit -B -DnewVersion=$1 + +base_version=$(echo $1 | cut -d- -f1) +major=$(echo $base_version | cut -d. -f1) +minor=$(echo $base_version | cut -d. -f2) +patch=$(echo $base_version | cut -d. -f3) + +if [ -f version.properties ] +then + sed -i '' -e 's/\(release_name=\).*/\1'$major'/;s/\(sprint_number=\).*/\1'$minor'/;s/\(feature_revision=\).*/\1'$patch'/' version.properties +fi diff --git a/tools/fluorine2neon.sh b/tools/fluorine2neon.sh new file mode 100755 index 00000000..4a513435 --- /dev/null +++ b/tools/fluorine2neon.sh @@ -0,0 +1,47 @@ +#!/usr/bin/env bash + +updatePom() { +export XMLLINT_INDENT=" " +cat $1 | xsltproc -o $1 /tmp/rebase-pom.xslt - +} + +export -f updatePom + +# Copy blueprints to new directory structure +find . -path '*/src/main/resources/org/opendaylight/blueprint/*.xml' -execdir sh -c "mkdir -p ../../../OSGI-INF/blueprint; cp {} ../../../OSGI-INF/blueprint" \; + +# Update ietf-net-types dependencies + +cat < /tmp/rebase-pom.xslt + + + + + + + + + + + + + org.opendaylight.mdsal.binding.model.ietf + rfc6991 + + + + + + + + + + + +END + +find . -name pom.xml -exec bash -c 'updatePom "$0" .' '{}' \; -- cgit 1.2.3-korg