You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@storm.apache.org by kn...@apache.org on 2015/12/17 22:01:40 UTC

[1/3] storm git commit: STORM-1395: move JUnit dependency to top-level pom

Repository: storm
Updated Branches:
  refs/heads/master 0e1c969c2 -> f46fec327


STORM-1395: move JUnit dependency to top-level pom


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

Branch: refs/heads/master
Commit: c89e4522164bb71c2b8805db02e67492b59dea71
Parents: 8b3c208
Author: P. Taylor Goetz <pt...@gmail.com>
Authored: Wed Dec 16 15:59:07 2015 -0500
Committer: P. Taylor Goetz <pt...@gmail.com>
Committed: Wed Dec 16 15:59:07 2015 -0500

----------------------------------------------------------------------
 pom.xml                            | 10 ++++++++++
 storm-multilang/javascript/pom.xml | 10 ----------
 storm-multilang/python/pom.xml     | 10 ----------
 storm-multilang/ruby/pom.xml       | 10 ----------
 4 files changed, 10 insertions(+), 30 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/storm/blob/c89e4522/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index c82bf08..e7abe94 100644
--- a/pom.xml
+++ b/pom.xml
@@ -270,6 +270,16 @@
         <module>examples/storm-starter</module>
     </modules>
 
+    <dependencies>
+        <!-- The JUnit dependency is required for submodules by the maven-surefire-plugin <excludedGroups> configuration -->
+        <dependency>
+            <groupId>junit</groupId>
+            <artifactId>junit</artifactId>
+            <version>${junit.version}</version>
+            <scope>test</scope>
+        </dependency>
+    </dependencies>
+
     <profiles>
         <profile>
             <id>sign</id>

http://git-wip-us.apache.org/repos/asf/storm/blob/c89e4522/storm-multilang/javascript/pom.xml
----------------------------------------------------------------------
diff --git a/storm-multilang/javascript/pom.xml b/storm-multilang/javascript/pom.xml
index 592f3fd..53ffff7 100644
--- a/storm-multilang/javascript/pom.xml
+++ b/storm-multilang/javascript/pom.xml
@@ -29,14 +29,4 @@
     <artifactId>multilang-javascript</artifactId>
     <packaging>jar</packaging>
     <name>multilang-javascript</name>
-
-    <dependencies>
-        <!-- The JUnit dependency is required for this submodule by the maven-surefire-plugin <excludedGroups> configuration -->
-        <dependency>
-            <groupId>junit</groupId>
-            <artifactId>junit</artifactId>
-            <version>${junit.version}</version>
-            <scope>test</scope>
-        </dependency>
-    </dependencies>
 </project>

http://git-wip-us.apache.org/repos/asf/storm/blob/c89e4522/storm-multilang/python/pom.xml
----------------------------------------------------------------------
diff --git a/storm-multilang/python/pom.xml b/storm-multilang/python/pom.xml
index d140a71..61798ce 100644
--- a/storm-multilang/python/pom.xml
+++ b/storm-multilang/python/pom.xml
@@ -28,14 +28,4 @@
     <artifactId>multilang-python</artifactId>
     <packaging>jar</packaging>
     <name>multilang-python</name>
-
-    <dependencies>
-        <!-- The JUnit dependency is required for this submodule by the maven-surefire-plugin <excludedGroups> configuration -->
-        <dependency>
-            <groupId>junit</groupId>
-            <artifactId>junit</artifactId>
-            <version>${junit.version}</version>
-            <scope>test</scope>
-        </dependency>
-    </dependencies>
 </project>

http://git-wip-us.apache.org/repos/asf/storm/blob/c89e4522/storm-multilang/ruby/pom.xml
----------------------------------------------------------------------
diff --git a/storm-multilang/ruby/pom.xml b/storm-multilang/ruby/pom.xml
index ec5b173..08eb555 100644
--- a/storm-multilang/ruby/pom.xml
+++ b/storm-multilang/ruby/pom.xml
@@ -28,14 +28,4 @@
     <artifactId>multilang-ruby</artifactId>
     <packaging>jar</packaging>
     <name>multilang-ruby</name>
-
-    <dependencies>
-        <!-- The JUnit dependency is required for this submodule by the maven-surefire-plugin <excludedGroups> configuration -->
-        <dependency>
-            <groupId>junit</groupId>
-            <artifactId>junit</artifactId>
-            <version>${junit.version}</version>
-            <scope>test</scope>
-        </dependency>
-    </dependencies>
 </project>


[2/3] storm git commit: Merge branch 'STORM-1395' of https://github.com/ptgoetz/storm

Posted by kn...@apache.org.
Merge branch 'STORM-1395' of https://github.com/ptgoetz/storm


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

Branch: refs/heads/master
Commit: d10571afc498727f3c713cd813bf8e713c2d27f7
Parents: 0e1c969 c89e452
Author: Kyle Nusbaum <Ky...@gmail.com>
Authored: Thu Dec 17 15:00:42 2015 -0600
Committer: Kyle Nusbaum <Ky...@gmail.com>
Committed: Thu Dec 17 15:00:42 2015 -0600

----------------------------------------------------------------------
 pom.xml                            | 10 ++++++++++
 storm-multilang/javascript/pom.xml | 10 ----------
 storm-multilang/python/pom.xml     | 10 ----------
 storm-multilang/ruby/pom.xml       | 10 ----------
 4 files changed, 10 insertions(+), 30 deletions(-)
----------------------------------------------------------------------



[3/3] storm git commit: Adding STORM-1395 to CHANGELOG.

Posted by kn...@apache.org.
Adding STORM-1395 to CHANGELOG.


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

Branch: refs/heads/master
Commit: f46fec3271d2a2c9bdfc036a2adf5c65ec56a55e
Parents: d10571a
Author: Kyle Nusbaum <Ky...@gmail.com>
Authored: Thu Dec 17 15:01:26 2015 -0600
Committer: Kyle Nusbaum <Ky...@gmail.com>
Committed: Thu Dec 17 15:01:26 2015 -0600

----------------------------------------------------------------------
 CHANGELOG.md | 1 +
 1 file changed, 1 insertion(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/storm/blob/f46fec32/CHANGELOG.md
----------------------------------------------------------------------
diff --git a/CHANGELOG.md b/CHANGELOG.md
index d74ca54..c2d4a4b 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,4 +1,5 @@
 ## 0.11.0
+ * STORM-1395: Move JUnit dependency to top-level pom
  * STORM-1372: Merging design and usage documents for distcache
  * STORM-1393: Update the storm.log.dir function, add doc for logs
  * STORM-1377: nimbus_auth_test: very short timeouts causing spurious failures