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 /holmes-actions/pom.xml | |
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>
Diffstat (limited to 'holmes-actions/pom.xml')
-rw-r--r-- | holmes-actions/pom.xml | 15 |
1 files changed, 11 insertions, 4 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>
|