diff options
Diffstat (limited to 'utils')
-rw-r--r-- | utils/DmaapPublisher/pom.xml | 2 | ||||
-rw-r--r-- | utils/webseal-simulator/pom.xml | 12 |
2 files changed, 13 insertions, 1 deletions
diff --git a/utils/DmaapPublisher/pom.xml b/utils/DmaapPublisher/pom.xml index 111f4f2adb..73ad30341c 100644 --- a/utils/DmaapPublisher/pom.xml +++ b/utils/DmaapPublisher/pom.xml @@ -18,7 +18,7 @@ <dependency> <groupId>org.codehaus.groovy</groupId> <artifactId>groovy</artifactId> - <version>2.4.11</version> + <version>${groovy.version}</version> </dependency> <dependency> diff --git a/utils/webseal-simulator/pom.xml b/utils/webseal-simulator/pom.xml index a56f5f0c4c..928dcfb5e5 100644 --- a/utils/webseal-simulator/pom.xml +++ b/utils/webseal-simulator/pom.xml @@ -60,6 +60,12 @@ <artifactId>jetty-proxy</artifactId> <version>${jetty.version}</version> <scope>compile</scope> + <exclusions> + <exclusion> + <groupId>org.eclipse.jetty</groupId> + <artifactId>jetty-http</artifactId> + </exclusion> + </exclusions> </dependency> <dependency> @@ -67,6 +73,12 @@ <artifactId>jetty-servlets</artifactId> <version>${jetty.version}</version> <scope>compile</scope> + <exclusions> + <exclusion> + <groupId>org.eclipse.jetty</groupId> + <artifactId>jetty-http</artifactId> + </exclusion> + </exclusions> </dependency> <!-- Proxy servlet --> |