You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@geode.apache.org by ab...@apache.org on 2016/02/08 18:03:51 UTC

[36/50] [abbrv] incubator-geode git commit: Update release build version to 1.0.0-incubating.M1

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/master
Commit: d6d70306955037a407ab975c8c2004298289d4bb
Parents: a097fcf
Author: Anthony Baker <ab...@pivotal.io>
Authored: Mon Jan 11 14:13:04 2016 -0800
Committer: Anthony Baker <ab...@pivotal.io>
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