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 2014/08/22 01:59:42 UTC

git commit: Prepare for Usergrid 0.0.29 release by changing stack version number and adding a release assembly.

Repository: incubator-usergrid
Updated Branches:
  refs/heads/master 0d766523c -> 9a536e69e


Prepare for Usergrid 0.0.29 release by changing stack version number and adding a release assembly.


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

Branch: refs/heads/master
Commit: 9a536e69e2bb3f6916393771ec9977d1353ee1fe
Parents: 0d76652
Author: Dave Johnson <sn...@apache.org>
Authored: Thu Aug 21 19:59:25 2014 -0400
Committer: Dave Johnson <sn...@apache.org>
Committed: Thu Aug 21 19:59:25 2014 -0400

----------------------------------------------------------------------
 .gitignore                           |  1 +
 release/pom.xml                      | 63 +++++++++++++++++++++++++++++++
 release/sign-release.sh              |  6 +++
 release/src/main/assembly/source.xml | 50 ++++++++++++++++++++++++
 stack/build-tools/pom.xml            |  2 +-
 stack/config/pom.xml                 |  2 +-
 stack/core/pom.xml                   |  2 +-
 stack/launcher/pom.xml               |  2 +-
 stack/mongo-emulator/pom.xml         |  2 +-
 stack/pom.xml                        |  2 +-
 stack/query-validator/pom.xml        |  2 +-
 stack/rest/pom.xml                   |  2 +-
 stack/services/pom.xml               |  2 +-
 stack/test-utils/pom.xml             |  2 +-
 stack/tools/pom.xml                  |  2 +-
 stack/websocket/pom.xml              |  2 +-
 16 files changed, 132 insertions(+), 12 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-usergrid/blob/9a536e69/.gitignore
----------------------------------------------------------------------
diff --git a/.gitignore b/.gitignore
index 4203d92..8c14336 100644
--- a/.gitignore
+++ b/.gitignore
@@ -54,3 +54,4 @@ portal/js/templates.js
 /portal/js/generated/
 
 /portal/js/generated-templates/
+/release/target/
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/incubator-usergrid/blob/9a536e69/release/pom.xml
----------------------------------------------------------------------
diff --git a/release/pom.xml b/release/pom.xml
new file mode 100644
index 0000000..0e7c9bd
--- /dev/null
+++ b/release/pom.xml
@@ -0,0 +1,63 @@
+<?xml version="1.0" encoding="UTF-8"?><!--
+ * 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.
+-->
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+    <modelVersion>4.0.0</modelVersion>
+
+    <parent>
+        <groupId>org.apache.usergrid</groupId>
+        <artifactId>usergrid</artifactId>
+        <version>0.0.29</version>
+        <relativePath>../stack/pom.xml</relativePath>
+    </parent>
+
+    <artifactId>usergrid-release</artifactId>
+    <packaging>pom</packaging>
+
+    <name>Usergrid Release Assembly</name>
+    <description>Assembles Usergrid into a distribution package</description>
+
+    <build>
+
+        <plugins>
+
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-assembly-plugin</artifactId>
+                <configuration>
+                    <descriptors>
+                        <descriptor>src/main/assembly/source.xml</descriptor>
+                    </descriptors>
+                    <tarLongFileMode>gnu</tarLongFileMode>
+                </configuration>
+                <executions>
+                    <execution>
+                        <id>make-assembly</id>
+                        <phase>package</phase>
+                        <goals>
+                            <goal>single</goal>
+                        </goals>
+                    </execution>
+                </executions>
+            </plugin>
+
+        </plugins>
+
+    </build>
+
+</project>

http://git-wip-us.apache.org/repos/asf/incubator-usergrid/blob/9a536e69/release/sign-release.sh
----------------------------------------------------------------------
diff --git a/release/sign-release.sh b/release/sign-release.sh
new file mode 100755
index 0000000..a56c8d8
--- /dev/null
+++ b/release/sign-release.sh
@@ -0,0 +1,6 @@
+export rcstring="rc1"
+export vstring="0.0.29"
+
+gpg --armor --detach-sig target/usergrid-release-${vstring}${rcstring}-source.zip
+gpg --armor --detach-sig target/usergrid-release-${vstring}${rcstring}-source.tar.gz
+

http://git-wip-us.apache.org/repos/asf/incubator-usergrid/blob/9a536e69/release/src/main/assembly/source.xml
----------------------------------------------------------------------
diff --git a/release/src/main/assembly/source.xml b/release/src/main/assembly/source.xml
new file mode 100644
index 0000000..b26f61f
--- /dev/null
+++ b/release/src/main/assembly/source.xml
@@ -0,0 +1,50 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ * 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.
+-->
+<assembly>
+	<id>source</id>
+	<formats>
+		<format>tar.gz</format>
+		<format>zip</format>
+	</formats>
+	<includeBaseDirectory>false</includeBaseDirectory>
+	<fileSets>
+		<fileSet>
+			<outputDirectory>usergrid-${pom.version}-source
+			</outputDirectory>
+			<directory>${project.basedir}/../</directory>
+			<includes>
+				<include>**</include>
+			</includes>
+			<excludes>
+				<exclude>**/target/**</exclude>
+				<exclude>**/**.log</exclude>
+				<exclude>**/.idea/**</exclude>
+				<exclude>**/._*</exclude>
+				<exclude>**/._*/**</exclude>
+				<exclude>**/.repository/**</exclude>
+				<exclude>**/.classpath</exclude>
+				<exclude>**/.project</exclude>
+				<exclude>**/.settings/**</exclude>
+			</excludes>
+		</fileSet>
+	</fileSets>
+</assembly>
+
+

http://git-wip-us.apache.org/repos/asf/incubator-usergrid/blob/9a536e69/stack/build-tools/pom.xml
----------------------------------------------------------------------
diff --git a/stack/build-tools/pom.xml b/stack/build-tools/pom.xml
index a4b5e87..6b112e8 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>0.0.29-SNAPSHOT</version>
+    <version>0.0.29</version>
     <relativePath>../</relativePath>
   </parent>
 

http://git-wip-us.apache.org/repos/asf/incubator-usergrid/blob/9a536e69/stack/config/pom.xml
----------------------------------------------------------------------
diff --git a/stack/config/pom.xml b/stack/config/pom.xml
index ddd336c..caff61c 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>0.0.29-SNAPSHOT</version>
+    <version>0.0.29</version>
     <relativePath>../</relativePath>
   </parent>
 

http://git-wip-us.apache.org/repos/asf/incubator-usergrid/blob/9a536e69/stack/core/pom.xml
----------------------------------------------------------------------
diff --git a/stack/core/pom.xml b/stack/core/pom.xml
index ff30713..4d8360f 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>0.0.29-SNAPSHOT</version>
+    <version>0.0.29</version>
     <relativePath>../</relativePath>
   </parent>
 

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

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

http://git-wip-us.apache.org/repos/asf/incubator-usergrid/blob/9a536e69/stack/pom.xml
----------------------------------------------------------------------
diff --git a/stack/pom.xml b/stack/pom.xml
index e482b3b..022f41a 100644
--- a/stack/pom.xml
+++ b/stack/pom.xml
@@ -27,7 +27,7 @@
 
   <groupId>org.apache.usergrid</groupId>
   <artifactId>usergrid</artifactId>
-  <version>0.0.29-SNAPSHOT</version>
+  <version>0.0.29</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/incubator-usergrid/blob/9a536e69/stack/query-validator/pom.xml
----------------------------------------------------------------------
diff --git a/stack/query-validator/pom.xml b/stack/query-validator/pom.xml
index ba0ee9c..885ff50 100644
--- a/stack/query-validator/pom.xml
+++ b/stack/query-validator/pom.xml
@@ -21,7 +21,7 @@
     <parent>
         <groupId>org.apache.usergrid</groupId>
         <artifactId>usergrid</artifactId>
-        <version>0.0.29-SNAPSHOT</version>
+        <version>0.0.29</version>
         <relativePath>../</relativePath>
     </parent>
     <properties>

http://git-wip-us.apache.org/repos/asf/incubator-usergrid/blob/9a536e69/stack/rest/pom.xml
----------------------------------------------------------------------
diff --git a/stack/rest/pom.xml b/stack/rest/pom.xml
index 0b22270..df0769b 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>0.0.29-SNAPSHOT</version>
+    <version>0.0.29</version>
     <relativePath>../</relativePath>
   </parent>
 

http://git-wip-us.apache.org/repos/asf/incubator-usergrid/blob/9a536e69/stack/services/pom.xml
----------------------------------------------------------------------
diff --git a/stack/services/pom.xml b/stack/services/pom.xml
index f8b11c2..256ebb0 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>0.0.29-SNAPSHOT</version>
+    <version>0.0.29</version>
     <relativePath>../</relativePath>
   </parent>
 

http://git-wip-us.apache.org/repos/asf/incubator-usergrid/blob/9a536e69/stack/test-utils/pom.xml
----------------------------------------------------------------------
diff --git a/stack/test-utils/pom.xml b/stack/test-utils/pom.xml
index 094b6d9..aecb4df 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>0.0.29-SNAPSHOT</version>
+    <version>0.0.29</version>
     <relativePath>../</relativePath>
   </parent>
 

http://git-wip-us.apache.org/repos/asf/incubator-usergrid/blob/9a536e69/stack/tools/pom.xml
----------------------------------------------------------------------
diff --git a/stack/tools/pom.xml b/stack/tools/pom.xml
index 8a1af58..4e3d2fd 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>0.0.29-SNAPSHOT</version>
+    <version>0.0.29</version>
     <relativePath>../</relativePath>
   </parent>
 

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