blob: ca69d279fb114054ded51fb631d924f42fe67b6e [file] [log] [blame]
Thomas Vachuska683b31b2015-01-26 11:54:31 -08001#!/bin/bash
2# -----------------------------------------------------------------------------
3# Changes ONOS version in POM files, and other release artifacts.
4# -----------------------------------------------------------------------------
5
Brian O'Connorf5d93632015-09-04 20:18:31 -07006set -e
7
Thomas Vachuska683b31b2015-01-26 11:54:31 -08008[ ! -d "$ONOS_ROOT" ] && echo "ONOS_ROOT is not defined" >&2 && exit 1
9. $ONOS_ROOT/tools/build/envDefaults
10
11export NEW_VERSION=$1
12[ -z "$NEW_VERSION" ] && echo "New ONOS version not specified" && exit 1
13
14export NEW_VERSION_SHORT=${NEW_VERSION%-SNAPSHOT}
15
16cd $ONOS_ROOT
17
18# Augment the version of the main pom and the modules nested underneath.
Ray Milkeydeb79f82018-06-04 12:05:27 -070019mvn -B -f lib/pom.xml versions:set -DnewVersion=$NEW_VERSION versions:commit
Thomas Vachuska683b31b2015-01-26 11:54:31 -080020
21# Augment the version of the Java API pom files and the overview.html file.
Brian O'Connor84e523c2015-09-04 20:21:36 -070022for pom in docs/internal.xml docs/external.xml; do
Ray Milkey85b87e42017-11-02 14:09:38 -070023 sed -i".VERBACK" -E "1,/<version>/s/<version>[^<]*</<version>$NEW_VERSION</g" $pom
24 sed -i".VERBACK" -E "1,/<doctitle>/s/<doctitle>ONOS Java API[^<]*</<doctitle>ONOS Java API ($NEW_VERSION)</g" $pom
Thomas Vachuska683b31b2015-01-26 11:54:31 -080025done
26
27# Augment the version in envDefaults, onos.py and archetypes test
Ray Milkey85b87e42017-11-02 14:09:38 -070028sed -i".VERBACK" -E "s/ONOS_VERSION:-[^$]*/ONOS_VERSION:-$NEW_VERSION_SHORT./" $ONOS_ROOT/tools/build/envDefaults
29sed -i".VERBACK" -E "s/features\/.*\/xml/features\/$NEW_VERSION\/xml/" $ONOS_ROOT/tools/dev/mininet/onos.py
30sed -i".VERBACK" -E "s/ -Dversion=.*\"/ -Dversion=$NEW_VERSION\"/" $ONOS_ROOT/tools/test/bin/onos-archetypes-test
31sed -i".VERBACK" -E "s/ONOS_POM_VERSION=.*\"/ONOS_POM_VERSION=\"$NEW_VERSION\"/" $ONOS_ROOT/tools/build/envDefaults
Thomas Vachuska683b31b2015-01-26 11:54:31 -080032
Jordan Haltermanf70bf462017-07-29 13:12:00 -070033# Augment fallback version in VersionManager
Ray Milkey85b87e42017-11-02 14:09:38 -070034sed -i".VERBACK" -E "s/Version\.version\(\"[^\"]*\"\)/Version.version(\"$NEW_VERSION\")/" \
Jordan Haltermanf70bf462017-07-29 13:12:00 -070035 $ONOS_ROOT/core/net/src/main/java/org/onosproject/core/impl/VersionManager.java
Brian O'Connor68ddd742015-03-25 14:11:17 -070036
Thomas Vachuska683b31b2015-01-26 11:54:31 -080037# Augment the version in archetypes tree.
Ray Milkeydeb79f82018-06-04 12:05:27 -070038mvn -B -f tools/package/archetypes/pom.xml versions:set -DnewVersion=$NEW_VERSION versions:commit
Thomas Vachuskabbb6c8e2015-12-11 15:16:54 -080039for atype in api bundle cli rest ui uitab uitopo; do
Thomas Vachuska683b31b2015-01-26 11:54:31 -080040 pom="tools/package/archetypes/$atype/src/main/resources/archetype-resources/pom.xml"
Ray Milkey85b87e42017-11-02 14:09:38 -070041 sed -i".VERBACK" -E "1,/<onos.version>/s/<onos.version>[^<]*</<onos.version>$NEW_VERSION</g" $pom
Thomas Vachuska683b31b2015-01-26 11:54:31 -080042done
Ray Milkey85b87e42017-11-02 14:09:38 -070043sed -i".VERBACK" -E "s/-DarchetypeVersion=[^\"]*/-DarchetypeVersion=$NEW_VERSION/g" $ONOS_ROOT/tools/test/bin/onos-archetypes-test
Thomas Vachuska683b31b2015-01-26 11:54:31 -080044
Ray Milkey4c29be22017-05-11 17:21:25 -070045# Fix the onos-build-conf version
Yuta HIGUCHI60831652018-05-02 13:46:13 -070046sed -i".VERBACK" -E "s/<onos-build-conf.version>.*<\/onos-build-conf.version>/<onos-build-conf.version>$NEW_VERSION<\/onos-build-conf.version>/g" $ONOS_ROOT/lib/pom.xml
Ray Milkey4c29be22017-05-11 17:21:25 -070047
Thomas Vachuska2dec3542016-06-01 17:46:14 -070048# Version the BUCK artifacts
Ray Milkey85b87e42017-11-02 14:09:38 -070049sed -i".VERBACK" -E "s/ONOS_VERSION.*/ONOS_VERSION = '$NEW_VERSION'/" onos.defs
50sed -i".VERBACK" -E "s/ONOS_VERSION=.*/ONOS_VERSION='$NEW_VERSION'/" tools/build/onos-prepare-sonar
51
Ray Milkeyf77ea412018-08-10 17:37:28 -070052# Version the bazel artifacts
53sed -i".VERBACK" -E "s/ONOS_VERSION.*/ONOS_VERSION = \"$NEW_VERSION\"/" tools/build/bazel/variables.bzl
Ray Milkeyf77ea412018-08-10 17:37:28 -070054
Ray Milkey85b87e42017-11-02 14:09:38 -070055find . -name "*.VERBACK" | xargs rm -f