diff options
author | Thomas Wolf | 2019-04-04 16:35:26 +0000 |
---|---|---|
committer | Thomas Wolf | 2019-04-04 16:35:26 +0000 |
commit | df89d305591dff97f77adfbc9f47e0b48b5417c6 (patch) | |
tree | 366ea5b96f095c8c2d05bd90481a67c15b78beea | |
parent | e6e69037ce8e834b80c7dcfe24b98e5317df8c48 (diff) | |
download | egit-github-stable-5.3.tar.gz egit-github-stable-5.3.tar.xz egit-github-stable-5.3.zip |
Correct version increase for egit-githubstable-5.3
The target platform setup was not increased with the version increase.
As a result stable nightly builds on the new infrastructure don't work.
Bug: 545981
Change-Id: I530f9b83748bc5f20f3e62b969849f247bcecd7e
Signed-off-by: Thomas Wolf <thomas.wolf@paranor.ch>
-rw-r--r-- | pom.xml | 3 | ||||
-rwxr-xr-x | tools/version.sh | 2 |
2 files changed, 3 insertions, 2 deletions
@@ -55,6 +55,7 @@ </licenses> <properties> + <egit-github-version>5.3.1-SNAPSHOT</egit-github-version> <tycho-version>1.3.0</tycho-version> <tycho-extras-version>${tycho-version}</tycho-extras-version> <spotbugs-maven-plugin-version>3.1.9</spotbugs-maven-plugin-version> @@ -344,7 +345,7 @@ <artifact> <groupId>org.eclipse.mylyn.github</groupId> <artifactId>org.eclipse.mylyn.github.target</artifactId> - <version>5.3.0-SNAPSHOT</version> + <version>${egit-github-version}</version> <classifier>github</classifier> </artifact> </target> diff --git a/tools/version.sh b/tools/version.sh index 4111e5a4..1ded1e6d 100755 --- a/tools/version.sh +++ b/tools/version.sh @@ -133,7 +133,7 @@ perl -pi~ -e ' $seen_version = 1 if s{<(version)>[^<\$]*</\1>}{<${1}>'"$POM_V"'</${1}>}; } - s{<(egit-version)>[^<\$]*</\1>}{<${1}>'"$POM_V"'</${1}>}; + s{<(egit-github-version)>[^<\$]*</\1>}{<${1}>'"$POM_V"'</${1}>}; ' pom.xml perl -pi~ -e ' |