You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@storm.apache.org by pt...@apache.org on 2014/02/06 04:44:43 UTC

[1/2] git commit: prep for release build

Updated Branches:
  refs/heads/master f1c9332cb -> 0218472c1


prep for release build


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

Branch: refs/heads/master
Commit: 8491178528e92e5e28fc11adaf2bfc9fde073684
Parents: f1c9332
Author: P. Taylor Goetz <pt...@gmail.com>
Authored: Wed Feb 5 22:38:34 2014 -0500
Committer: P. Taylor Goetz <pt...@gmail.com>
Committed: Wed Feb 5 22:38:34 2014 -0500

----------------------------------------------------------------------
 pom.xml                   |  2 --
 storm-dist/binary/pom.xml | 17 ++---------------
 storm-dist/source/pom.xml | 17 ++---------------
 3 files changed, 4 insertions(+), 32 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-storm/blob/84911785/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index cf80d00..720fab3 100644
--- a/pom.xml
+++ b/pom.xml
@@ -543,9 +543,7 @@
                 <artifactId>maven-release-plugin</artifactId>
                 <configuration>
                     <autoVersionSubmodules>true</autoVersionSubmodules>
-                    <goals>deploy assembly:assembly</goals>
                     <tagNameFormat>v@{project.version}</tagNameFormat>
-                    <preparationGoals>clean verify</preparationGoals>
                 </configuration>
             </plugin>
             <plugin>

http://git-wip-us.apache.org/repos/asf/incubator-storm/blob/84911785/storm-dist/binary/pom.xml
----------------------------------------------------------------------
diff --git a/storm-dist/binary/pom.xml b/storm-dist/binary/pom.xml
index 234f8cb..54ec172 100644
--- a/storm-dist/binary/pom.xml
+++ b/storm-dist/binary/pom.xml
@@ -54,6 +54,7 @@
             </executions>
             <configuration>
                 <attach>true</attach>
+                <runOnlyAtExecutionRoot>true</runOnlyAtExecutionRoot>
                 <descriptors>
                     <descriptor>${project.basedir}/src/main/assembly/binary.xml</descriptor>
                 </descriptors>
@@ -65,27 +66,13 @@
                 <artifactId>maven-gpg-plugin</artifactId>
                 <executions>
                     <execution>
-                        <phase>deploy</phase>
+                        <phase>package</phase>
                         <goals>
                             <goal>sign</goal>
                         </goals>
                     </execution>
                 </executions>
             </plugin>
-            <plugin>
-                <groupId>org.apache.maven.plugins</groupId>
-                <artifactId>maven-install-plugin</artifactId>
-                <!--
-                    we don't need to install to the local repo
-                    so unbind from the install phase
-                -->
-                <executions>
-                    <execution>
-                        <id>default-install</id>
-                        <phase>none</phase>
-                    </execution>
-                </executions>
-            </plugin>
         </plugins>
     </build>
 </project>

http://git-wip-us.apache.org/repos/asf/incubator-storm/blob/84911785/storm-dist/source/pom.xml
----------------------------------------------------------------------
diff --git a/storm-dist/source/pom.xml b/storm-dist/source/pom.xml
index f591b85..d2a4366 100644
--- a/storm-dist/source/pom.xml
+++ b/storm-dist/source/pom.xml
@@ -54,6 +54,7 @@
             </executions>
             <configuration>
                 <attach>true</attach>
+                <runOnlyAtExecutionRoot>true</runOnlyAtExecutionRoot>
                 <descriptors>
                     <descriptor>${project.basedir}/src/main/assembly/source.xml</descriptor>
                 </descriptors>
@@ -64,27 +65,13 @@
                 <artifactId>maven-gpg-plugin</artifactId>
                 <executions>
                     <execution>
-                        <phase>deploy</phase>
+                        <phase>package</phase>
                         <goals>
                             <goal>sign</goal>
                         </goals>
                     </execution>
                 </executions>
             </plugin>
-            <plugin>
-                <groupId>org.apache.maven.plugins</groupId>
-                <artifactId>maven-install-plugin</artifactId>
-                <!--
-                    we don't need to install to the local repo
-                    so unbind from the install phase
-                -->
-                <executions>
-                    <execution>
-                        <id>default-install</id>
-                        <phase>none</phase>
-                    </execution>
-                </executions>
-            </plugin>
         </plugins>
     </build>
 </project>


[2/2] git commit: [maven-release-plugin] prepare release v0.9.1-incubating

Posted by pt...@apache.org.
[maven-release-plugin] prepare release v0.9.1-incubating


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

Branch: refs/heads/master
Commit: 0218472c163be69a7e772691851442a3d5b287e9
Parents: 8491178
Author: P. Taylor Goetz <pt...@gmail.com>
Authored: Wed Feb 5 22:44:36 2014 -0500
Committer: P. Taylor Goetz <pt...@gmail.com>
Committed: Wed Feb 5 22:44:36 2014 -0500

----------------------------------------------------------------------
 pom.xml                                                  | 4 ++--
 storm-buildtools/maven-shade-clojure-transformer/pom.xml | 6 ++----
 storm-core/pom.xml                                       | 4 ++--
 storm-dist/binary/pom.xml                                | 2 +-
 storm-dist/source/pom.xml                                | 2 +-
 5 files changed, 8 insertions(+), 10 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-storm/blob/0218472c/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index 720fab3..a274e3f 100644
--- a/pom.xml
+++ b/pom.xml
@@ -27,7 +27,7 @@
 
     <groupId>org.apache.storm</groupId>
     <artifactId>storm</artifactId>
-    <version>0.9.1-incubating-SNAPSHOT</version>
+    <version>0.9.1-incubating</version>
     <packaging>pom</packaging>
     <name>Storm</name>
     <description>Distributed and fault-tolerant realtime computation</description>
@@ -135,7 +135,7 @@
     <scm>
         <connection>scm:git:https://git-wip-us.apache.org/repos/asf/incubator-storm.git</connection>
         <developerConnection>scm:git:https://git-wip-us.apache.org/repos/asf/incubator-storm.git</developerConnection>
-        <tag>HEAD</tag>
+        <tag>v0.9.1-incubating</tag>
         <url>https://git-wip-us.apache.org/repos/asf/incubator-storm</url>
     </scm>
 

http://git-wip-us.apache.org/repos/asf/incubator-storm/blob/0218472c/storm-buildtools/maven-shade-clojure-transformer/pom.xml
----------------------------------------------------------------------
diff --git a/storm-buildtools/maven-shade-clojure-transformer/pom.xml b/storm-buildtools/maven-shade-clojure-transformer/pom.xml
index 2082083..bfaafc0 100644
--- a/storm-buildtools/maven-shade-clojure-transformer/pom.xml
+++ b/storm-buildtools/maven-shade-clojure-transformer/pom.xml
@@ -15,15 +15,13 @@
  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">
+<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>
         <artifactId>storm</artifactId>
         <groupId>org.apache.storm</groupId>
-        <version>0.9.1-incubating-SNAPSHOT</version>
+        <version>0.9.1-incubating</version>
         <relativePath>../../pom.xml</relativePath>
     </parent>
 

http://git-wip-us.apache.org/repos/asf/incubator-storm/blob/0218472c/storm-core/pom.xml
----------------------------------------------------------------------
diff --git a/storm-core/pom.xml b/storm-core/pom.xml
index 8a71b85..8325bcf 100644
--- a/storm-core/pom.xml
+++ b/storm-core/pom.xml
@@ -20,7 +20,7 @@
     <parent>
         <artifactId>storm</artifactId>
         <groupId>org.apache.storm</groupId>
-        <version>0.9.1-incubating-SNAPSHOT</version>
+        <version>0.9.1-incubating</version>
     </parent>
     <groupId>org.apache.storm</groupId>
     <artifactId>storm-core</artifactId>
@@ -248,7 +248,7 @@
                         </relocation>
                     </relocations>
                     <transformers>
-                        <transformer implementation="org.apache.storm.maven.shade.clojure.ClojureTransformer"/>
+                        <transformer implementation="org.apache.storm.maven.shade.clojure.ClojureTransformer" />
                     </transformers>
                     <filters>
                         <filter>

http://git-wip-us.apache.org/repos/asf/incubator-storm/blob/0218472c/storm-dist/binary/pom.xml
----------------------------------------------------------------------
diff --git a/storm-dist/binary/pom.xml b/storm-dist/binary/pom.xml
index 54ec172..15b76b2 100644
--- a/storm-dist/binary/pom.xml
+++ b/storm-dist/binary/pom.xml
@@ -21,7 +21,7 @@
     <parent>
         <artifactId>storm</artifactId>
         <groupId>org.apache.storm</groupId>
-        <version>0.9.1-incubating-SNAPSHOT</version>
+        <version>0.9.1-incubating</version>
         <relativePath>../../pom.xml</relativePath>
     </parent>
     <groupId>org.apache.storm</groupId>

http://git-wip-us.apache.org/repos/asf/incubator-storm/blob/0218472c/storm-dist/source/pom.xml
----------------------------------------------------------------------
diff --git a/storm-dist/source/pom.xml b/storm-dist/source/pom.xml
index d2a4366..aa6c138 100644
--- a/storm-dist/source/pom.xml
+++ b/storm-dist/source/pom.xml
@@ -21,7 +21,7 @@
     <parent>
         <artifactId>storm</artifactId>
         <groupId>org.apache.storm</groupId>
-        <version>0.9.1-incubating-SNAPSHOT</version>
+        <version>0.9.1-incubating</version>
         <relativePath>../../pom.xml</relativePath>
     </parent>
     <groupId>org.apache.storm</groupId>