You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@usergrid.apache.org by sn...@apache.org on 2016/02/09 16:34:46 UTC

usergrid git commit: Remove SNAPSHOT from Stack version number.

Repository: usergrid
Updated Branches:
  refs/heads/release 147342752 -> 48b0c3b49


Remove SNAPSHOT from Stack version number.


Project: http://git-wip-us.apache.org/repos/asf/usergrid/repo
Commit: http://git-wip-us.apache.org/repos/asf/usergrid/commit/48b0c3b4
Tree: http://git-wip-us.apache.org/repos/asf/usergrid/tree/48b0c3b4
Diff: http://git-wip-us.apache.org/repos/asf/usergrid/diff/48b0c3b4

Branch: refs/heads/release
Commit: 48b0c3b4952e78db66cb7085acfce71518fdd12b
Parents: 1473427
Author: Dave Johnson <sn...@apache.org>
Authored: Tue Feb 9 10:34:14 2016 -0500
Committer: Dave Johnson <sn...@apache.org>
Committed: Tue Feb 9 10:34:14 2016 -0500

----------------------------------------------------------------------
 stack/build-tools/pom.xml                |  2 +-
 stack/config/pom.xml                     |  2 +-
 stack/core/pom.xml                       | 14 +++++++-------
 stack/corepersistence/collection/pom.xml |  2 +-
 stack/corepersistence/common/pom.xml     |  2 +-
 stack/corepersistence/graph/pom.xml      |  2 +-
 stack/corepersistence/map/pom.xml        |  2 +-
 stack/corepersistence/model/pom.xml      |  2 +-
 stack/corepersistence/pom.xml            |  2 +-
 stack/corepersistence/queryindex/pom.xml |  2 +-
 stack/corepersistence/queue/pom.xml      |  2 +-
 stack/pom.xml                            |  2 +-
 stack/rest/pom.xml                       |  4 ++--
 stack/services/pom.xml                   |  2 +-
 stack/test-utils/pom.xml                 |  2 +-
 stack/tools/pom.xml                      |  4 ++--
 16 files changed, 24 insertions(+), 24 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/usergrid/blob/48b0c3b4/stack/build-tools/pom.xml
----------------------------------------------------------------------
diff --git a/stack/build-tools/pom.xml b/stack/build-tools/pom.xml
index eb84fea..5c95ebc 100644
--- a/stack/build-tools/pom.xml
+++ b/stack/build-tools/pom.xml
@@ -22,7 +22,7 @@
   <parent>
     <groupId>org.apache.usergrid</groupId>
     <artifactId>usergrid</artifactId>
-    <version>2.1.0-SNAPSHOT</version>
+    <version>2.1.0</version>
     <relativePath>../</relativePath>
   </parent>
 

http://git-wip-us.apache.org/repos/asf/usergrid/blob/48b0c3b4/stack/config/pom.xml
----------------------------------------------------------------------
diff --git a/stack/config/pom.xml b/stack/config/pom.xml
index 32de5aa..1720178 100644
--- a/stack/config/pom.xml
+++ b/stack/config/pom.xml
@@ -21,7 +21,7 @@
   <parent>
     <groupId>org.apache.usergrid</groupId>
     <artifactId>usergrid</artifactId>
-    <version>2.1.0-SNAPSHOT</version>
+    <version>2.1.0</version>
     <relativePath>../</relativePath>
   </parent>
 

http://git-wip-us.apache.org/repos/asf/usergrid/blob/48b0c3b4/stack/core/pom.xml
----------------------------------------------------------------------
diff --git a/stack/core/pom.xml b/stack/core/pom.xml
index be2d28c..ec83db1 100644
--- a/stack/core/pom.xml
+++ b/stack/core/pom.xml
@@ -21,7 +21,7 @@
   <parent>
     <groupId>org.apache.usergrid</groupId>
     <artifactId>usergrid</artifactId>
-    <version>2.1.0-SNAPSHOT</version>
+    <version>2.1.0</version>
     <relativePath>../</relativePath>
   </parent>
 
@@ -418,7 +418,7 @@
        <dependency>
         <groupId>org.apache.usergrid</groupId>
         <artifactId>common</artifactId>
-        <version>2.1.0-SNAPSHOT</version>
+        <version>2.1.0</version>
         <type>test-jar</type>
            <scope>test</scope>
        </dependency>
@@ -427,7 +427,7 @@
     <dependency>
 	    <groupId>org.apache.usergrid</groupId>
 	    <artifactId>collection</artifactId>
-	    <version>2.1.0-SNAPSHOT</version>
+	    <version>2.1.0</version>
 	    <type>jar</type>
       <exclusions>
         <exclusion>
@@ -445,28 +445,28 @@
     <dependency>
 	    <groupId>org.apache.usergrid</groupId>
 	    <artifactId>queryindex</artifactId>
-	    <version>2.1.0-SNAPSHOT</version>
+	    <version>2.1.0</version>
 	    <type>jar</type>
     </dependency>
 
     <dependency>
 	    <groupId>org.apache.usergrid</groupId>
 	    <artifactId>graph</artifactId>
-	    <version>2.1.0-SNAPSHOT</version>
+	    <version>2.1.0</version>
 	    <type>jar</type>
     </dependency>
 
     <dependency>
       <groupId>org.apache.usergrid</groupId>
       <artifactId>map</artifactId>
-      <version>2.1.0-SNAPSHOT</version>
+      <version>2.1.0</version>
       <type>jar</type>
     </dependency>
 
     <dependency>
       <groupId>org.apache.usergrid</groupId>
       <artifactId>queue</artifactId>
-      <version>2.1.0-SNAPSHOT</version>
+      <version>2.1.0</version>
       <type>jar</type>
     </dependency>
 

http://git-wip-us.apache.org/repos/asf/usergrid/blob/48b0c3b4/stack/corepersistence/collection/pom.xml
----------------------------------------------------------------------
diff --git a/stack/corepersistence/collection/pom.xml b/stack/corepersistence/collection/pom.xml
index 4eaa393..c378127 100644
--- a/stack/corepersistence/collection/pom.xml
+++ b/stack/corepersistence/collection/pom.xml
@@ -6,7 +6,7 @@
   <parent>
     <artifactId>persistence</artifactId>
     <groupId>org.apache.usergrid</groupId>
-    <version>2.1.0-SNAPSHOT</version>
+    <version>2.1.0</version>
   </parent>
 
   <modelVersion>4.0.0</modelVersion>

http://git-wip-us.apache.org/repos/asf/usergrid/blob/48b0c3b4/stack/corepersistence/common/pom.xml
----------------------------------------------------------------------
diff --git a/stack/corepersistence/common/pom.xml b/stack/corepersistence/common/pom.xml
index 84f09de..aa09ef8 100644
--- a/stack/corepersistence/common/pom.xml
+++ b/stack/corepersistence/common/pom.xml
@@ -5,7 +5,7 @@
   <parent>
     <artifactId>persistence</artifactId>
     <groupId>org.apache.usergrid</groupId>
-    <version>2.1.0-SNAPSHOT</version>
+    <version>2.1.0</version>
   </parent>
   <modelVersion>4.0.0</modelVersion>
 

http://git-wip-us.apache.org/repos/asf/usergrid/blob/48b0c3b4/stack/corepersistence/graph/pom.xml
----------------------------------------------------------------------
diff --git a/stack/corepersistence/graph/pom.xml b/stack/corepersistence/graph/pom.xml
index 3dde8bb..13b23c2 100644
--- a/stack/corepersistence/graph/pom.xml
+++ b/stack/corepersistence/graph/pom.xml
@@ -24,7 +24,7 @@
   <parent>
     <artifactId>persistence</artifactId>
     <groupId>org.apache.usergrid</groupId>
-    <version>2.1.0-SNAPSHOT</version>
+    <version>2.1.0</version>
   </parent>
 
   <modelVersion>4.0.0</modelVersion>

http://git-wip-us.apache.org/repos/asf/usergrid/blob/48b0c3b4/stack/corepersistence/map/pom.xml
----------------------------------------------------------------------
diff --git a/stack/corepersistence/map/pom.xml b/stack/corepersistence/map/pom.xml
index 7b367ba..d04e48f 100644
--- a/stack/corepersistence/map/pom.xml
+++ b/stack/corepersistence/map/pom.xml
@@ -22,7 +22,7 @@ limitations under the License.
   <parent>
     <artifactId>persistence</artifactId>
     <groupId>org.apache.usergrid</groupId>
-    <version>2.1.0-SNAPSHOT</version>
+    <version>2.1.0</version>
   </parent>
 
   <modelVersion>4.0.0</modelVersion>

http://git-wip-us.apache.org/repos/asf/usergrid/blob/48b0c3b4/stack/corepersistence/model/pom.xml
----------------------------------------------------------------------
diff --git a/stack/corepersistence/model/pom.xml b/stack/corepersistence/model/pom.xml
index 591935f..f26e9fd 100644
--- a/stack/corepersistence/model/pom.xml
+++ b/stack/corepersistence/model/pom.xml
@@ -5,7 +5,7 @@
     <parent>
         <artifactId>persistence</artifactId>
         <groupId>org.apache.usergrid</groupId>
-        <version>2.1.0-SNAPSHOT</version>
+        <version>2.1.0</version>
     </parent>
     <modelVersion>4.0.0</modelVersion>
 

http://git-wip-us.apache.org/repos/asf/usergrid/blob/48b0c3b4/stack/corepersistence/pom.xml
----------------------------------------------------------------------
diff --git a/stack/corepersistence/pom.xml b/stack/corepersistence/pom.xml
index 3c86a93..91670fa 100644
--- a/stack/corepersistence/pom.xml
+++ b/stack/corepersistence/pom.xml
@@ -26,7 +26,7 @@ limitations under the License.
     <artifactId>persistence</artifactId>
     <name>Usergrid Persistence</name>
     <packaging>pom</packaging>
-    <version>2.1.0-SNAPSHOT</version>
+    <version>2.1.0</version>
 
   <profiles>
     <!-- better to have keep this sonar profile in your maven settings.xml -->

http://git-wip-us.apache.org/repos/asf/usergrid/blob/48b0c3b4/stack/corepersistence/queryindex/pom.xml
----------------------------------------------------------------------
diff --git a/stack/corepersistence/queryindex/pom.xml b/stack/corepersistence/queryindex/pom.xml
index 2484cfd..68f71f5 100644
--- a/stack/corepersistence/queryindex/pom.xml
+++ b/stack/corepersistence/queryindex/pom.xml
@@ -6,7 +6,7 @@
     <parent>
         <artifactId>persistence</artifactId>
         <groupId>org.apache.usergrid</groupId>
-        <version>2.1.0-SNAPSHOT</version>
+        <version>2.1.0</version>
     </parent>
 
     <modelVersion>4.0.0</modelVersion>

http://git-wip-us.apache.org/repos/asf/usergrid/blob/48b0c3b4/stack/corepersistence/queue/pom.xml
----------------------------------------------------------------------
diff --git a/stack/corepersistence/queue/pom.xml b/stack/corepersistence/queue/pom.xml
index 2d46dc8..501eccd 100644
--- a/stack/corepersistence/queue/pom.xml
+++ b/stack/corepersistence/queue/pom.xml
@@ -24,7 +24,7 @@
   <parent>
     <artifactId>persistence</artifactId>
     <groupId>org.apache.usergrid</groupId>
-    <version>2.1.0-SNAPSHOT</version>
+    <version>2.1.0</version>
   </parent>
 
   <modelVersion>4.0.0</modelVersion>

http://git-wip-us.apache.org/repos/asf/usergrid/blob/48b0c3b4/stack/pom.xml
----------------------------------------------------------------------
diff --git a/stack/pom.xml b/stack/pom.xml
index 4499510..1c4541b 100644
--- a/stack/pom.xml
+++ b/stack/pom.xml
@@ -27,7 +27,7 @@
 
   <groupId>org.apache.usergrid</groupId>
   <artifactId>usergrid</artifactId>
-  <version>2.1.0-SNAPSHOT</version>
+  <version>2.1.0</version>
   <name>Usergrid Parent</name>
   <description>Parent module for the Apache Usergrid Project</description>
   <packaging>pom</packaging>

http://git-wip-us.apache.org/repos/asf/usergrid/blob/48b0c3b4/stack/rest/pom.xml
----------------------------------------------------------------------
diff --git a/stack/rest/pom.xml b/stack/rest/pom.xml
index 7b1bad6..f98ad5d 100644
--- a/stack/rest/pom.xml
+++ b/stack/rest/pom.xml
@@ -21,7 +21,7 @@
     <parent>
         <groupId>org.apache.usergrid</groupId>
         <artifactId>usergrid</artifactId>
-        <version>2.1.0-SNAPSHOT</version>
+        <version>2.1.0</version>
     </parent>
 
     <artifactId>usergrid-rest</artifactId>
@@ -404,7 +404,7 @@
         <dependency>
             <groupId>org.apache.usergrid</groupId>
             <artifactId>usergrid-services</artifactId>
-            <version>2.1.0-SNAPSHOT</version>
+            <version>2.1.0</version>
             <scope>test</scope>
             <classifier>tests</classifier>
         </dependency>

http://git-wip-us.apache.org/repos/asf/usergrid/blob/48b0c3b4/stack/services/pom.xml
----------------------------------------------------------------------
diff --git a/stack/services/pom.xml b/stack/services/pom.xml
index ef72fc5..d6e939a 100644
--- a/stack/services/pom.xml
+++ b/stack/services/pom.xml
@@ -21,7 +21,7 @@
   <parent>
     <groupId>org.apache.usergrid</groupId>
     <artifactId>usergrid</artifactId>
-    <version>2.1.0-SNAPSHOT</version>
+    <version>2.1.0</version>
     <relativePath>../</relativePath>
   </parent>
 

http://git-wip-us.apache.org/repos/asf/usergrid/blob/48b0c3b4/stack/test-utils/pom.xml
----------------------------------------------------------------------
diff --git a/stack/test-utils/pom.xml b/stack/test-utils/pom.xml
index b28d170..750c249 100644
--- a/stack/test-utils/pom.xml
+++ b/stack/test-utils/pom.xml
@@ -21,7 +21,7 @@
     <parent>
         <groupId>org.apache.usergrid</groupId>
         <artifactId>usergrid</artifactId>
-        <version>2.1.0-SNAPSHOT</version>
+        <version>2.1.0</version>
     </parent>
 
     <artifactId>usergrid-test-utils</artifactId>

http://git-wip-us.apache.org/repos/asf/usergrid/blob/48b0c3b4/stack/tools/pom.xml
----------------------------------------------------------------------
diff --git a/stack/tools/pom.xml b/stack/tools/pom.xml
index 6e0dc50..7670681 100644
--- a/stack/tools/pom.xml
+++ b/stack/tools/pom.xml
@@ -21,7 +21,7 @@
   <parent>
     <groupId>org.apache.usergrid</groupId>
     <artifactId>usergrid</artifactId>
-    <version>2.1.0-SNAPSHOT</version>
+    <version>2.1.0</version>
     <relativePath>../</relativePath>
   </parent>
 
@@ -29,7 +29,7 @@
   <name>Usergrid Tools</name>
   <description>Command line tools for Usergrid system.</description>
   <packaging>jar</packaging>
-  <version>2.1.0-SNAPSHOT</version>
+  <version>2.1.0</version>
 
   <reporting>
     <plugins>