diff options
author | 2018-04-02 11:33:14 -0400 | |
---|---|---|
committer | 2018-04-02 11:33:14 -0400 | |
commit | d8c81e748f1db2fbd2bdd810671d90894af35d69 (patch) | |
tree | e532c473e94cc561ed6aafb8b728ff666ac0090c /ecomp-sdk/epsdk-fw | |
parent | 19a214bd35c126067ea6c07825d1e58edf336c50 (diff) |
Security Vunerabilities
Issue-ID: PORTAL-155
Excluded beanshell dependency from epsdk-common, epsdk-core and epsdk-fw
pom.xml.
Change-Id: I068bd1134269a162a64710abc92aacf9cbba32d3
Signed-off-by: sa282w <sa282w@att.com>
Diffstat (limited to 'ecomp-sdk/epsdk-fw')
-rw-r--r-- | ecomp-sdk/epsdk-fw/pom.xml | 16 |
1 files changed, 13 insertions, 3 deletions
diff --git a/ecomp-sdk/epsdk-fw/pom.xml b/ecomp-sdk/epsdk-fw/pom.xml index 62600840..55f68744 100644 --- a/ecomp-sdk/epsdk-fw/pom.xml +++ b/ecomp-sdk/epsdk-fw/pom.xml @@ -107,6 +107,10 @@ <groupId>commons-httpclient</groupId> <artifactId>commons-httpclient</artifactId> </exclusion> + <exclusion> + <groupId>org.beanshell</groupId> + <artifactId>bsh-core</artifactId> + </exclusion> </exclusions> </dependency> <dependency> @@ -145,6 +149,12 @@ <artifactId>resteasy-spring</artifactId> <version>${resteasy.version}</version> <scope>test</scope> + <exclusions> + <exclusion> + <groupId>org.apache.httpcomponents</groupId> + <artifactId>httpclient</artifactId> + </exclusion> + </exclusions> </dependency> <dependency> <groupId>org.jboss.resteasy</groupId> @@ -189,9 +199,9 @@ <version>1.3.3</version> </dependency> <dependency> - <groupId>commons-beanutils</groupId> - <artifactId>commons-beanutils</artifactId> - <version>1.9.3</version> + <groupId>commons-beanutils</groupId> + <artifactId>commons-beanutils</artifactId> + <version>1.9.3</version> </dependency> </dependencies> |