You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@storm.apache.org by ka...@apache.org on 2018/06/19 20:01:11 UTC

[1/2] storm git commit: STORM-3114: Ban jdk.tools

Repository: storm
Updated Branches:
  refs/heads/master e9630a575 -> 11586d0fb


STORM-3114: Ban jdk.tools


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

Branch: refs/heads/master
Commit: e73e03aea61150fd35ca1f8bae7196272e27a909
Parents: 5200cff
Author: Stig Rohde Døssing <sr...@apache.org>
Authored: Mon Jun 18 21:48:41 2018 +0200
Committer: Stig Rohde Døssing <sr...@apache.org>
Committed: Mon Jun 18 21:48:41 2018 +0200

----------------------------------------------------------------------
 external/storm-hdfs-blobstore/pom.xml | 5 +++++
 pom.xml                               | 6 ++++++
 2 files changed, 11 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/storm/blob/e73e03ae/external/storm-hdfs-blobstore/pom.xml
----------------------------------------------------------------------
diff --git a/external/storm-hdfs-blobstore/pom.xml b/external/storm-hdfs-blobstore/pom.xml
index 6383e11..132b453 100644
--- a/external/storm-hdfs-blobstore/pom.xml
+++ b/external/storm-hdfs-blobstore/pom.xml
@@ -166,6 +166,11 @@
                     <groupId>javax.servlet.jsp</groupId>
                     <artifactId>jsp-api</artifactId>
                 </exclusion>
+                <exclusion>
+                    <!-- This is leaking from hadoop-annotations. -->
+                    <groupId>jdk.tools</groupId>
+                    <artifactId>jdk.tools</artifactId>
+                </exclusion>
             </exclusions>
         </dependency>
         <dependency>

http://git-wip-us.apache.org/repos/asf/storm/blob/e73e03ae/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index b5f3a5e..4422afa 100644
--- a/pom.xml
+++ b/pom.xml
@@ -1302,6 +1302,12 @@
                                 <requireMavenVersion>
                                     <version>3.0</version>
                                 </requireMavenVersion>
+                                <bannedDependencies>
+                                    <excludes>
+                                        <!-- STORM-3114 -->
+                                        <exclude>jdk.tools:jdk.tools:*</exclude>
+                                    </excludes>
+                                </bannedDependencies>
                             </rules>    
                         </configuration>
                     </execution>


[2/2] storm git commit: Merge branch 'STORM-3114' of https://github.com/srdo/storm into STORM-3114-merge

Posted by ka...@apache.org.
Merge branch 'STORM-3114' of https://github.com/srdo/storm into STORM-3114-merge


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

Branch: refs/heads/master
Commit: 11586d0fb9dc78829c1f51d822f596b26fcde7e8
Parents: e9630a5 e73e03a
Author: Jungtaek Lim <ka...@gmail.com>
Authored: Wed Jun 20 05:00:58 2018 +0900
Committer: Jungtaek Lim <ka...@gmail.com>
Committed: Wed Jun 20 05:00:58 2018 +0900

----------------------------------------------------------------------
 external/storm-hdfs-blobstore/pom.xml | 5 +++++
 pom.xml                               | 6 ++++++
 2 files changed, 11 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/storm/blob/11586d0f/pom.xml
----------------------------------------------------------------------