diff options
-rw-r--r-- | policy-core/pom.xml | 10 | ||||
-rw-r--r-- | pom.xml | 4 |
2 files changed, 9 insertions, 5 deletions
diff --git a/policy-core/pom.xml b/policy-core/pom.xml index 18157c07..8cbef405 100644 --- a/policy-core/pom.xml +++ b/policy-core/pom.xml @@ -39,7 +39,7 @@ <dependencies> <!-- Issue: 1 of 2 - These 2 dependencies are trying to upgrade security fixes + These 3 dependencies are trying to upgrade security fixes identified. If they are removed or manipulated then please fix the 2nd change as noted below. --> @@ -52,6 +52,10 @@ <groupId>com.thoughtworks.xstream</groupId> <artifactId>xstream</artifactId> </dependency> + <dependency> + <groupId>com.google.guava</groupId> + <artifactId>guava</artifactId> + </dependency> <dependency> <groupId>org.kie</groupId> @@ -77,6 +81,10 @@ <groupId>com.thoughtworks.xstream</groupId> <artifactId>xstream</artifactId> </exclusion> + <exclusion> + <groupId>com.google.guava</groupId> + <artifactId>guava</artifactId> + </exclusion> </exclusions> </dependency> <dependency> @@ -114,10 +114,6 @@ <dependencyManagement> <dependencies> <dependency> - <groupId>com.google.guava</groupId> - <artifactId>guava</artifactId> - </dependency> - <dependency> <groupId>javax.ws.rs</groupId> <artifactId>javax.ws.rs-api</artifactId> <version>2.0.1</version> |