aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Rautureau <david.rautureau@sonarsource.com>2016-10-26 13:48:17 +0200
committerJulien HENRY <henryju@yahoo.fr>2017-01-13 10:05:31 +0100
commit1bb53d8a302bde4a79a2d7c548b186b57afee7d8 (patch)
tree1f2841b07a6d1da1ae15d46ca535b9b7a2deaa7e
parent2b173573993a388b7a957d6ea1ef369f75e6f745 (diff)
downloadsonar-scanner-cli-1bb53d8a302bde4a79a2d7c548b186b57afee7d8.tar.gz
sonar-scanner-cli-1bb53d8a302bde4a79a2d7c548b186b57afee7d8.zip
BUILD-265 Move to the new release process
-rw-r--r--it/pom.xml2
-rwxr-xr-xtravis.sh2
2 files changed, 2 insertions, 2 deletions
diff --git a/it/pom.xml b/it/pom.xml
index 12e1539..7c8a536 100644
--- a/it/pom.xml
+++ b/it/pom.xml
@@ -103,7 +103,7 @@
String pom = new File(project.basedir, '../pom.xml').getText('UTF-8')
def matcher = pom =~ /(?s).*<version>(.*?)-SNAPSHOT<\/version>.*/
assert matcher.matches()
- project.properties['scanner.version'] = matcher[0][1] + '-build' + System.getenv()['CI_BUILD_NUMBER']
+ project.properties['scanner.version'] = matcher[0][1] + '.0.' + System.getenv()['CI_BUILD_NUMBER']
]]>
</source>
</configuration>
diff --git a/travis.sh b/travis.sh
index f4b14ea..d2f96b1 100755
--- a/travis.sh
+++ b/travis.sh
@@ -4,7 +4,7 @@ set -euo pipefail
function configureTravis {
mkdir ~/.local
- curl -sSL https://github.com/SonarSource/travis-utils/tarball/latest | tar zx --strip-components 1 -C ~/.local
+ curl -sSL https://github.com/SonarSource/travis-utils/tarball/v33 | tar zx --strip-components 1 -C ~/.local
source ~/.local/bin/install
}
configureTravis