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/12 04:57:55 UTC

[1/3] incubator-geode git commit: GEODE-918: Add ASF header to generate pom files

Repository: incubator-geode
Updated Branches:
  refs/heads/develop 700599052 -> a928ea7a7


GEODE-918: Add ASF header to generate pom files


Project: http://git-wip-us.apache.org/repos/asf/incubator-geode/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-geode/commit/a928ea7a
Tree: http://git-wip-us.apache.org/repos/asf/incubator-geode/tree/a928ea7a
Diff: http://git-wip-us.apache.org/repos/asf/incubator-geode/diff/a928ea7a

Branch: refs/heads/develop
Commit: a928ea7a76e887d5514ad98739d87e6ee2bb2278
Parents: dcf6bef
Author: Anthony Baker <ab...@apache.org>
Authored: Thu Feb 11 12:49:01 2016 -0800
Committer: Anthony Baker <ab...@apache.org>
Committed: Thu Feb 11 19:56:10 2016 -0800

----------------------------------------------------------------------
 gradle/publish.gradle | 23 +++++++++++++++++++++++
 1 file changed, 23 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/a928ea7a/gradle/publish.gradle
----------------------------------------------------------------------
diff --git a/gradle/publish.gradle b/gradle/publish.gradle
index 4eb6a75..73e4cd3 100644
--- a/gradle/publish.gradle
+++ b/gradle/publish.gradle
@@ -30,6 +30,29 @@ subprojects {
   }
   
   modifyPom {
+    withXml {
+      def elem = asElement()
+      def hdr = elem.getOwnerDocument().createComment(
+  '''
+  Licensed to the Apache Software Foundation (ASF) under one or more
+  contributor license agreements.  See the NOTICE file distributed with
+  this work for additional information regarding copyright ownership.
+  The ASF licenses this file to You under the Apache License, Version 2.0
+  (the "License"); you may not use this file except in compliance with
+  the License.  You may obtain a copy of the License at
+
+      http://www.apache.org/licenses/LICENSE-2.0
+
+  Unless required by applicable law or agreed to in writing, software
+  distributed under the License is distributed on an "AS IS" BASIS,
+  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.
+  ''')
+
+      elem.insertBefore(hdr, elem.getFirstChild())
+    }
+
     project {
       name 'Apache Geode (incubating)'
       description 'Apache Geode (incubating) provides a database-like consistency model, reliable transaction processing and a shared-nothing architecture to maintain very low latency performance with high concurrency processing'


[2/3] incubator-geode git commit: Update version to 1.0.0-incubating.M2-SNAPSHOT

Posted by ab...@apache.org.
Update version to 1.0.0-incubating.M2-SNAPSHOT


Project: http://git-wip-us.apache.org/repos/asf/incubator-geode/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-geode/commit/dcf6bef4
Tree: http://git-wip-us.apache.org/repos/asf/incubator-geode/tree/dcf6bef4
Diff: http://git-wip-us.apache.org/repos/asf/incubator-geode/diff/dcf6bef4

Branch: refs/heads/develop
Commit: dcf6bef40ce84a77037399be6eaf1b0a9ee6b598
Parents: ee7b041
Author: Anthony Baker <ab...@apache.org>
Authored: Wed Feb 10 20:12:53 2016 -0800
Committer: Anthony Baker <ab...@apache.org>
Committed: Thu Feb 11 19:56:10 2016 -0800

----------------------------------------------------------------------
 build.gradle      | 2 +-
 gradle.properties | 8 ++++----
 2 files changed, 5 insertions(+), 5 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/dcf6bef4/build.gradle
----------------------------------------------------------------------
diff --git a/build.gradle b/build.gradle
index c0c304e..8fa7e5d 100755
--- a/build.gradle
+++ b/build.gradle
@@ -35,7 +35,7 @@ dependencyVersions.load(new FileInputStream("${project.projectDir}/gradle/depend
 dependencyVersions.keys().each{ k -> project.ext[k] = dependencyVersions[k]}
 
 allprojects {
-  version = versionNumber + '-' + releaseType
+  version = versionNumber + releaseType
   ext.isReleaseVersion = !version.endsWith("SNAPSHOT")
 
   // We want to see all test results.  This is equivalatent to setting --continue

http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/dcf6bef4/gradle.properties
----------------------------------------------------------------------
diff --git a/gradle.properties b/gradle.properties
index 6741627..6106175 100755
--- a/gradle.properties
+++ b/gradle.properties
@@ -14,11 +14,11 @@
 # limitations under the License.
 
 # Set the release type using the following conventions:
-# M? - Milestone 
-# RC? - Release candidate
-# RELEASE - Final build
+# -SNAPSHOT - development version
+# .M?       - milestone release
+# <blank>   - release
 versionNumber = 1.0.0-incubating
-releaseType = SNAPSHOT
+releaseType = .M2-SNAPSHOT
 
 org.gradle.daemon = true
 org.gradle.jvmargs = -Xmx2048m


[3/3] incubator-geode git commit: GEODE-26: Remove mavenLocal from repositories

Posted by ab...@apache.org.
GEODE-26: Remove mavenLocal from repositories


Project: http://git-wip-us.apache.org/repos/asf/incubator-geode/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-geode/commit/ee7b041a
Tree: http://git-wip-us.apache.org/repos/asf/incubator-geode/tree/ee7b041a
Diff: http://git-wip-us.apache.org/repos/asf/incubator-geode/diff/ee7b041a

Branch: refs/heads/develop
Commit: ee7b041adb7be0debc16e631ca4024b8d8652d53
Parents: 7005990
Author: Anthony Baker <ab...@apache.org>
Authored: Wed Feb 10 19:41:02 2016 -0800
Committer: Anthony Baker <ab...@apache.org>
Committed: Thu Feb 11 19:56:10 2016 -0800

----------------------------------------------------------------------
 build.gradle | 1 -
 1 file changed, 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/ee7b041a/build.gradle
----------------------------------------------------------------------
diff --git a/build.gradle b/build.gradle
index 7e3fc34..c0c304e 100755
--- a/build.gradle
+++ b/build.gradle
@@ -43,7 +43,6 @@ allprojects {
   gradle.startParameter.continueOnFailure = true
   
   repositories {
-    mavenLocal()
     mavenCentral()
     maven { url "http://repo.spring.io/release" }
     maven { url "http://repo.spring.io/milestone" }