diff options
author | David Rautureau <david.rautureau@sonarsource.com> | 2016-10-26 13:48:17 +0200 |
---|---|---|
committer | Julien HENRY <henryju@yahoo.fr> | 2017-01-13 10:05:31 +0100 |
commit | 1bb53d8a302bde4a79a2d7c548b186b57afee7d8 (patch) | |
tree | 1f2841b07a6d1da1ae15d46ca535b9b7a2deaa7e | |
parent | 2b173573993a388b7a957d6ea1ef369f75e6f745 (diff) | |
download | sonar-scanner-cli-1bb53d8a302bde4a79a2d7c548b186b57afee7d8.tar.gz sonar-scanner-cli-1bb53d8a302bde4a79a2d7c548b186b57afee7d8.zip |
BUILD-265 Move to the new release process
-rw-r--r-- | it/pom.xml | 2 | ||||
-rwxr-xr-x | travis.sh | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -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> @@ -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 |