Repository: incubator-gobblin Updated Branches: refs/heads/master 74b758dec -> 58a6f2ae7
[GOBBLIN-355] Disable snapshot versioning until downstream fixes Project: http://git-wip-us.apache.org/repos/asf/incubator-gobblin/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-gobblin/commit/a0b0f68e Tree: http://git-wip-us.apache.org/repos/asf/incubator-gobblin/tree/a0b0f68e Diff: http://git-wip-us.apache.org/repos/asf/incubator-gobblin/diff/a0b0f68e Branch: refs/heads/master Commit: a0b0f68e4efe70dbc3b53a1ce55a4eaf22f26e1f Parents: 74b758d Author: Abhishek Tiwari <[email protected]> Authored: Fri Jan 5 07:36:46 2018 +0530 Committer: Abhishek Tiwari <[email protected]> Committed: Fri Jan 5 07:36:46 2018 +0530 ---------------------------------------------------------------------- gradle/scripts/release.gradle | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-gobblin/blob/a0b0f68e/gradle/scripts/release.gradle ---------------------------------------------------------------------- diff --git a/gradle/scripts/release.gradle b/gradle/scripts/release.gradle index 4bce1e2..2bc7c3e 100644 --- a/gradle/scripts/release.gradle +++ b/gradle/scripts/release.gradle @@ -25,9 +25,11 @@ project(':') { def isRelease = ext.release.toBoolean() def releaseVersion = project.version -if (!isRelease) { - releaseVersion += "-SNAPSHOT" -} +println String.format("Release Version: %s", releaseVersion) +// GOBBLIN-355 Disable until downstream does not fix +// if (!isRelease) { +// releaseVersion += "-SNAPSHOT" +// } // Modify the gradle.properties to indicate whether this is a release. This results in the // source releases generating artifacts without -SNAPSHOT appended to the version when they are
