Return-Path: X-Original-To: apmail-geode-commits-archive@minotaur.apache.org Delivered-To: apmail-geode-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id B36F118E31 for ; Sat, 6 Feb 2016 18:07:33 +0000 (UTC) Received: (qmail 2473 invoked by uid 500); 6 Feb 2016 18:07:33 -0000 Delivered-To: apmail-geode-commits-archive@geode.apache.org Received: (qmail 2443 invoked by uid 500); 6 Feb 2016 18:07:33 -0000 Mailing-List: contact commits-help@geode.incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@geode.incubator.apache.org Delivered-To: mailing list commits@geode.incubator.apache.org Received: (qmail 2434 invoked by uid 99); 6 Feb 2016 18:07:33 -0000 Received: from Unknown (HELO spamd1-us-west.apache.org) (209.188.14.142) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 06 Feb 2016 18:07:33 +0000 Received: from localhost (localhost [127.0.0.1]) by spamd1-us-west.apache.org (ASF Mail Server at spamd1-us-west.apache.org) with ESMTP id 1F147C1289 for ; Sat, 6 Feb 2016 18:07:33 +0000 (UTC) X-Virus-Scanned: Debian amavisd-new at spamd1-us-west.apache.org X-Spam-Flag: NO X-Spam-Score: -3.597 X-Spam-Level: X-Spam-Status: No, score=-3.597 tagged_above=-999 required=6.31 tests=[KAM_ASCII_DIVIDERS=0.8, KAM_LAZY_DOMAIN_SECURITY=1, RCVD_IN_DNSWL_HI=-5, RCVD_IN_MSPIKE_H3=-0.01, RCVD_IN_MSPIKE_WL=-0.01, RP_MATCHES_RCVD=-0.377] autolearn=disabled Received: from mx1-us-east.apache.org ([10.40.0.8]) by localhost (spamd1-us-west.apache.org [10.40.0.7]) (amavisd-new, port 10024) with ESMTP id acuKSfFUqcyB for ; Sat, 6 Feb 2016 18:07:32 +0000 (UTC) Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by mx1-us-east.apache.org (ASF Mail Server at mx1-us-east.apache.org) with SMTP id C42F242A21 for ; Sat, 6 Feb 2016 18:07:31 +0000 (UTC) Received: (qmail 2382 invoked by uid 99); 6 Feb 2016 18:07:31 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 06 Feb 2016 18:07:31 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id EC2BFE0092; Sat, 6 Feb 2016 18:07:30 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: abaker@apache.org To: commits@geode.incubator.apache.org Date: Sat, 06 Feb 2016 18:07:30 -0000 Message-Id: <477144c825c044c4acb26315ddda735a@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [01/15] incubator-geode git commit: Update release build version to 1.0.0-incubating.M1 Repository: incubator-geode Updated Branches: refs/heads/develop 57b8229d1 -> 98e29ee53 Update release build version to 1.0.0-incubating.M1 Project: http://git-wip-us.apache.org/repos/asf/incubator-geode/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-geode/commit/d6d70306 Tree: http://git-wip-us.apache.org/repos/asf/incubator-geode/tree/d6d70306 Diff: http://git-wip-us.apache.org/repos/asf/incubator-geode/diff/d6d70306 Branch: refs/heads/develop Commit: d6d70306955037a407ab975c8c2004298289d4bb Parents: a097fcf Author: Anthony Baker Authored: Mon Jan 11 14:13:04 2016 -0800 Committer: Anthony Baker Committed: Mon Jan 11 14:13:04 2016 -0800 ---------------------------------------------------------------------- build.gradle | 3 ++- gradle.properties | 7 ++++++- 2 files changed, 8 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/d6d70306/build.gradle ---------------------------------------------------------------------- diff --git a/build.gradle b/build.gradle index f464dc3..1f1077c 100755 --- a/build.gradle +++ b/build.gradle @@ -36,7 +36,8 @@ dependencyVersions.load(new FileInputStream("${project.projectDir}/gradle/depend dependencyVersions.keys().each{ k -> project.ext[k] = dependencyVersions[k]} allprojects { - version = versionNumber + '-' + releaseType + version = versionNumber + '.' + releaseType + // We want to see all test results. This is equivalatent to setting --continue // on the command line. gradle.startParameter.continueOnFailure = true http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/d6d70306/gradle.properties ---------------------------------------------------------------------- diff --git a/gradle.properties b/gradle.properties index c6ca51f..3687ff0 100755 --- a/gradle.properties +++ b/gradle.properties @@ -12,8 +12,13 @@ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. + +# Set the release type using the following conventions: +# M? - Milestone +# RC? - Release candidate +# RELEASE - Final build versionNumber = 1.0.0-incubating -releaseType = SNAPSHOT +releaseType = M1 org.gradle.daemon = true org.gradle.jvmargs = -Xmx2048m