Skip to content

Commit

Permalink
STORM-3061: mqtt-update
Browse files Browse the repository at this point in the history
  • Loading branch information
Robert (Bobby) Evans committed Jun 27, 2018
1 parent 95db8fc commit ffb60e0
Show file tree
Hide file tree
Showing 5 changed files with 51 additions and 40 deletions.
17 changes: 3 additions & 14 deletions examples/storm-jms-examples/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
<artifactId>storm-jms-examples</artifactId>

<properties>
<spring.version>2.5.6</spring.version>
<spring.version>5.0.4.RELEASE</spring.version>
</properties>
<dependencies>
<dependency>
Expand All @@ -56,7 +56,7 @@
<dependency>
<groupId>org.apache.xbean</groupId>
<artifactId>xbean-spring</artifactId>
<version>3.7</version>
<version>4.8</version>
</dependency>
<dependency>
<groupId>org.apache.storm</groupId>
Expand All @@ -72,18 +72,7 @@
</dependency>
<dependency>
<groupId>org.apache.activemq</groupId>
<artifactId>activemq-core</artifactId>
<version>5.4.0</version>
<exclusions>
<exclusion>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</exclusion>
<exclusion>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
</exclusion>
</exclusions>
<artifactId>activemq-client</artifactId>
</dependency>
</dependencies>
<build>
Expand Down
13 changes: 0 additions & 13 deletions examples/storm-mqtt-examples/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -43,16 +43,6 @@
<artifactId>storm-mqtt</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-core</artifactId>
<version>2.1</version>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-slf4j-impl</artifactId>
<version>2.1</version>
</dependency>
<dependency>
<groupId>org.apache.storm</groupId>
<artifactId>flux-core</artifactId>
Expand All @@ -66,17 +56,14 @@
<dependency>
<groupId>org.apache.activemq</groupId>
<artifactId>activemq-broker</artifactId>
<version>5.9.0</version>
</dependency>
<dependency>
<groupId>org.apache.activemq</groupId>
<artifactId>activemq-mqtt</artifactId>
<version>5.9.0</version>
</dependency>
<dependency>
<groupId>org.apache.activemq</groupId>
<artifactId>activemq-kahadb-store</artifactId>
<version>5.9.0</version>
</dependency>
</dependencies>
<build>
Expand Down
9 changes: 2 additions & 7 deletions external/storm-jms/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,8 @@
<relativePath>../../pom.xml</relativePath>
</parent>



<artifactId>storm-jms</artifactId>



<developers>
<developer>
<id>ptgoetz</id>
Expand Down Expand Up @@ -59,11 +55,10 @@
<scope>test</scope>
</dependency>

<!-- Active MQ -->
<!-- Active MQ for testing JMS-->
<dependency>
<groupId>org.apache.activemq</groupId>
<artifactId>activemq-core</artifactId>
<version>5.5.1</version>
<artifactId>activemq-all</artifactId>
<scope>test</scope>
<exclusions>
<exclusion>
Expand Down
6 changes: 0 additions & 6 deletions external/storm-mqtt/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,6 @@
<relativePath>../../pom.xml</relativePath>
</parent>




<repositories>
<repository>
<id>bintray</id>
Expand All @@ -49,19 +46,16 @@
<dependency>
<groupId>org.apache.activemq</groupId>
<artifactId>activemq-broker</artifactId>
<version>5.9.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.activemq</groupId>
<artifactId>activemq-mqtt</artifactId>
<version>5.9.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.activemq</groupId>
<artifactId>activemq-kahadb-store</artifactId>
<version>5.9.0</version>
<scope>test</scope>
</dependency>
<dependency>
Expand Down
46 changes: 46 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -310,6 +310,7 @@
<solr.version>5.2.1</solr.version>
<jpmml.version>1.0.22</jpmml.version>
<jedis.version>2.9.0</jedis.version>
<activemq.version>5.15.3</activemq.version>
<rocketmq.version>4.2.0</rocketmq.version>

<jackson.version>2.9.4</jackson.version>
Expand Down Expand Up @@ -1118,6 +1119,51 @@
<artifactId>rocksdbjni</artifactId>
<version>${rocksdb-version}</version>
</dependency>
<dependency>
<groupId>org.apache.activemq</groupId>
<artifactId>activemq-client</artifactId>
<version>${activemq.version}</version>
<exclusions>
<exclusion>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</exclusion>
<exclusion>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.apache.activemq</groupId>
<artifactId>activemq-broker</artifactId>
<version>${activemq.version}</version>
</dependency>
<dependency>
<groupId>org.apache.activemq</groupId>
<artifactId>activemq-mqtt</artifactId>
<version>${activemq.version}</version>
</dependency>
<dependency>
<groupId>org.apache.activemq</groupId>
<artifactId>activemq-kahadb-store</artifactId>
<version>${activemq.version}</version>
</dependency>
<dependency>
<groupId>org.apache.activemq</groupId>
<artifactId>activemq-all</artifactId>
<version>${activemq.version}</version>
<exclusions>
<exclusion>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</exclusion>
<exclusion>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
</exclusion>
</exclusions>
</dependency>
</dependencies>
</dependencyManagement>

Expand Down

0 comments on commit ffb60e0

Please sign in to comment.