You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@usergrid.apache.org by sf...@apache.org on 2014/08/21 16:10:01 UTC

[5/9] git commit: Correct relative paths and reference to SNAPSHOT parent pom.xml in stack

Correct relative paths and reference to SNAPSHOT parent pom.xml in stack


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

Branch: refs/heads/master
Commit: f42d9f48ec063b7557d51fbe16a9b27262dadb86
Parents: b1ed7d3
Author: Lewis John McGibbney <le...@jpl.nasa.gov>
Authored: Wed Aug 20 22:30:27 2014 -0700
Committer: Lewis John McGibbney <le...@jpl.nasa.gov>
Committed: Wed Aug 20 22:30:27 2014 -0700

----------------------------------------------------------------------
 stack/build-tools/pom.xml     | 3 ++-
 stack/config/pom.xml          | 3 ++-
 stack/core/pom.xml            | 3 ++-
 stack/launcher/pom.xml        | 3 ++-
 stack/mongo-emulator/pom.xml  | 3 ++-
 stack/query-validator/pom.xml | 3 ++-
 stack/rest/pom.xml            | 3 ++-
 stack/services/pom.xml        | 3 ++-
 stack/test-utils/pom.xml      | 3 ++-
 stack/tools/pom.xml           | 3 ++-
 stack/websocket/pom.xml       | 3 ++-
 11 files changed, 22 insertions(+), 11 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-usergrid/blob/f42d9f48/stack/build-tools/pom.xml
----------------------------------------------------------------------
diff --git a/stack/build-tools/pom.xml b/stack/build-tools/pom.xml
index 566f981..a4b5e87 100644
--- a/stack/build-tools/pom.xml
+++ b/stack/build-tools/pom.xml
@@ -22,7 +22,8 @@
   <parent>
     <groupId>org.apache.usergrid</groupId>
     <artifactId>usergrid</artifactId>
-    <version>0.0.29</version>
+    <version>0.0.29-SNAPSHOT</version>
+    <relativePath>../</relativePath>
   </parent>
 
   <artifactId>build-tools</artifactId>

http://git-wip-us.apache.org/repos/asf/incubator-usergrid/blob/f42d9f48/stack/config/pom.xml
----------------------------------------------------------------------
diff --git a/stack/config/pom.xml b/stack/config/pom.xml
index 218b051..ddd336c 100644
--- a/stack/config/pom.xml
+++ b/stack/config/pom.xml
@@ -21,7 +21,8 @@
   <parent>
     <groupId>org.apache.usergrid</groupId>
     <artifactId>usergrid</artifactId>
-    <version>0.0.29</version>
+    <version>0.0.29-SNAPSHOT</version>
+    <relativePath>../</relativePath>
   </parent>
 
   <artifactId>usergrid-config</artifactId>

http://git-wip-us.apache.org/repos/asf/incubator-usergrid/blob/f42d9f48/stack/core/pom.xml
----------------------------------------------------------------------
diff --git a/stack/core/pom.xml b/stack/core/pom.xml
index 5a84a9d..ff30713 100644
--- a/stack/core/pom.xml
+++ b/stack/core/pom.xml
@@ -21,7 +21,8 @@
   <parent>
     <groupId>org.apache.usergrid</groupId>
     <artifactId>usergrid</artifactId>
-    <version>0.0.29</version>
+    <version>0.0.29-SNAPSHOT</version>
+    <relativePath>../</relativePath>
   </parent>
 
   <properties>

http://git-wip-us.apache.org/repos/asf/incubator-usergrid/blob/f42d9f48/stack/launcher/pom.xml
----------------------------------------------------------------------
diff --git a/stack/launcher/pom.xml b/stack/launcher/pom.xml
index 307af7f..5626d7d 100644
--- a/stack/launcher/pom.xml
+++ b/stack/launcher/pom.xml
@@ -21,7 +21,8 @@
   <parent>
     <groupId>org.apache.usergrid</groupId>
     <artifactId>usergrid</artifactId>
-    <version>0.0.29</version>
+    <version>0.0.29-SNAPSHOT</version>
+    <relativePath>../</relativePath>
   </parent>
 
   <artifactId>usergrid-launcher</artifactId>

http://git-wip-us.apache.org/repos/asf/incubator-usergrid/blob/f42d9f48/stack/mongo-emulator/pom.xml
----------------------------------------------------------------------
diff --git a/stack/mongo-emulator/pom.xml b/stack/mongo-emulator/pom.xml
index cf4bde5..a8b5c46 100644
--- a/stack/mongo-emulator/pom.xml
+++ b/stack/mongo-emulator/pom.xml
@@ -21,7 +21,8 @@
   <parent>
     <groupId>org.apache.usergrid</groupId>
     <artifactId>usergrid</artifactId>
-    <version>0.0.29</version>
+    <version>0.0.29-SNAPSHOT</version>
+    <relativePath>../</relativePath>
   </parent>
 
   <artifactId>usergrid-mongo-emulator</artifactId>

http://git-wip-us.apache.org/repos/asf/incubator-usergrid/blob/f42d9f48/stack/query-validator/pom.xml
----------------------------------------------------------------------
diff --git a/stack/query-validator/pom.xml b/stack/query-validator/pom.xml
index 6213215..ba0ee9c 100644
--- a/stack/query-validator/pom.xml
+++ b/stack/query-validator/pom.xml
@@ -21,7 +21,8 @@
     <parent>
         <groupId>org.apache.usergrid</groupId>
         <artifactId>usergrid</artifactId>
-        <version>0.0.29</version>
+        <version>0.0.29-SNAPSHOT</version>
+        <relativePath>../</relativePath>
     </parent>
     <properties>
         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>

http://git-wip-us.apache.org/repos/asf/incubator-usergrid/blob/f42d9f48/stack/rest/pom.xml
----------------------------------------------------------------------
diff --git a/stack/rest/pom.xml b/stack/rest/pom.xml
index 78398d7..f69434d 100644
--- a/stack/rest/pom.xml
+++ b/stack/rest/pom.xml
@@ -21,7 +21,8 @@
   <parent>
     <groupId>org.apache.usergrid</groupId>
     <artifactId>usergrid</artifactId>
-    <version>0.0.29</version>
+    <version>0.0.29-SNAPSHOT</version>
+    <relativePath>../</relativePath>
   </parent>
 
   <artifactId>usergrid-rest</artifactId>

http://git-wip-us.apache.org/repos/asf/incubator-usergrid/blob/f42d9f48/stack/services/pom.xml
----------------------------------------------------------------------
diff --git a/stack/services/pom.xml b/stack/services/pom.xml
index 852c0f6..f8b11c2 100644
--- a/stack/services/pom.xml
+++ b/stack/services/pom.xml
@@ -21,7 +21,8 @@
   <parent>
     <groupId>org.apache.usergrid</groupId>
     <artifactId>usergrid</artifactId>
-    <version>0.0.29</version>
+    <version>0.0.29-SNAPSHOT</version>
+    <relativePath>../</relativePath>
   </parent>
 
   <!-- Override these properties in your settings.xml in an active profile -->

http://git-wip-us.apache.org/repos/asf/incubator-usergrid/blob/f42d9f48/stack/test-utils/pom.xml
----------------------------------------------------------------------
diff --git a/stack/test-utils/pom.xml b/stack/test-utils/pom.xml
index a05954a..094b6d9 100644
--- a/stack/test-utils/pom.xml
+++ b/stack/test-utils/pom.xml
@@ -21,7 +21,8 @@
   <parent>
     <groupId>org.apache.usergrid</groupId>
     <artifactId>usergrid</artifactId>
-    <version>0.0.29</version>
+    <version>0.0.29-SNAPSHOT</version>
+    <relativePath>../</relativePath>
   </parent>
 
   <artifactId>usergrid-test-utils</artifactId>

http://git-wip-us.apache.org/repos/asf/incubator-usergrid/blob/f42d9f48/stack/tools/pom.xml
----------------------------------------------------------------------
diff --git a/stack/tools/pom.xml b/stack/tools/pom.xml
index afe7ca0..24d1913 100644
--- a/stack/tools/pom.xml
+++ b/stack/tools/pom.xml
@@ -21,7 +21,8 @@
   <parent>
     <groupId>org.apache.usergrid</groupId>
     <artifactId>usergrid</artifactId>
-    <version>0.0.29</version>
+    <version>0.0.29-SNAPSHOT</version>
+    <relativePath>../</relativePath>
   </parent>
 
   <artifactId>usergrid-tools</artifactId>

http://git-wip-us.apache.org/repos/asf/incubator-usergrid/blob/f42d9f48/stack/websocket/pom.xml
----------------------------------------------------------------------
diff --git a/stack/websocket/pom.xml b/stack/websocket/pom.xml
index b9d38c4..9bfa97a 100644
--- a/stack/websocket/pom.xml
+++ b/stack/websocket/pom.xml
@@ -21,7 +21,8 @@
   <parent>
     <groupId>org.apache.usergrid</groupId>
     <artifactId>usergrid</artifactId>
-    <version>0.0.29</version>
+    <version>0.0.29-SNAPSHOT</version>
+    <relativePath>../</relativePath>
   </parent>
 
   <artifactId>usergrid-websocket</artifactId>