diff options
author | Guangrong Fu <fu.guangrong@zte.com.cn> | 2018-01-23 14:56:31 +0800 |
---|---|---|
committer | Guangrong Fu <fu.guangrong@zte.com.cn> | 2018-01-23 14:56:31 +0800 |
commit | 8d591f3575b8accf709d7ba2c138fac6389a04bd (patch) | |
tree | 8cf56ee974b8af062676f67ad9e5eacfecc86d43 | |
parent | 644ac0ccce68e0c0d461255377dd1397c2578f2d (diff) |
Fix some of the IQ findings
Change-Id: Ida5cb5891db049c2c8b6c5566325e657c1df7849
Issue-ID: HOLMES-116
Signed-off-by: Guangrong Fu <fu.guangrong@zte.com.cn>
-rw-r--r-- | holmes-actions/pom.xml | 15 | ||||
-rw-r--r-- | pom.xml | 8 |
2 files changed, 15 insertions, 8 deletions
diff --git a/holmes-actions/pom.xml b/holmes-actions/pom.xml index 2d2aa02..f39f227 100644 --- a/holmes-actions/pom.xml +++ b/holmes-actions/pom.xml @@ -24,10 +24,6 @@ <artifactId>msb-java-sdk</artifactId>
</dependency>
<dependency>
- <groupId>org.apache.activemq</groupId>
- <artifactId>activemq-core</artifactId>
- </dependency>
- <dependency>
<groupId>org.apache.geronimo.specs</groupId>
<artifactId>geronimo-jms_1.1_spec</artifactId>
</dependency>
@@ -125,6 +121,7 @@ <groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
</dependency>
+
<dependency>
<groupId>net.sf.json-lib</groupId>
<artifactId>json-lib</artifactId>
@@ -135,6 +132,10 @@ <groupId>commons-collections</groupId>
<artifactId>commons-collections</artifactId>
</exclusion>
+ <exclusion>
+ <groupId>commons-beanutils</groupId>
+ <artifactId>commons-beanutils</artifactId>
+ </exclusion>
</exclusions>
</dependency>
<dependency>
@@ -142,6 +143,12 @@ <artifactId>commons-collections</artifactId>
<version>3.2.2</version>
</dependency>
+ <dependency>
+ <groupId>commons-beanutils</groupId>
+ <artifactId>commons-beanutils</artifactId>
+ <version>1.9.3</version>
+ </dependency>
+
</dependencies>
<build>
<resources>
@@ -39,7 +39,7 @@ <nexusproxy>https://nexus.open-o.org/content</nexusproxy>
<stringtemplate.version>3.2.1</stringtemplate.version>
- <dropwizard.version>0.8.0</dropwizard.version>
+ <dropwizard.version>0.9.3</dropwizard.version>
<swagger.version>1.5.3</swagger.version>
<lombok.version>1.16.8</lombok.version>
<jersey.version>2.22.2</jersey.version>
@@ -158,8 +158,8 @@ </dependency>
<dependency>
<groupId>org.apache.activemq</groupId>
- <artifactId>activemq-core</artifactId>
- <version>5.7.0</version>
+ <artifactId>activemq-broker</artifactId>
+ <version>5.10.1</version>
</dependency>
<dependency>
<groupId>org.apache.geronimo.specs</groupId>
@@ -169,7 +169,7 @@ <dependency>
<groupId>org.apache.activemq</groupId>
<artifactId>activemq-pool</artifactId>
- <version>5.8.0</version>
+ <version>5.10.1</version>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
|