diff options
Diffstat (limited to 'catalog-be/pom.xml')
-rw-r--r-- | catalog-be/pom.xml | 41 |
1 files changed, 40 insertions, 1 deletions
diff --git a/catalog-be/pom.xml b/catalog-be/pom.xml index 85674cb8cc..0452c7682e 100644 --- a/catalog-be/pom.xml +++ b/catalog-be/pom.xml @@ -365,6 +365,10 @@ <scope>compile</scope> <exclusions> <exclusion> + <artifactId>gremlin-groovy</artifactId> + <groupId>org.apache.tinkerpop</groupId> + </exclusion> + <exclusion> <groupId>org.json</groupId> <artifactId>json</artifactId> </exclusion> @@ -539,9 +543,22 @@ <!--Jetty Proxy--> <dependency> <groupId>org.eclipse.jetty</groupId> + <artifactId>jetty-http</artifactId> + <version>${jetty.version}</version> + <scope>compile</scope> + </dependency> + + <dependency> + <groupId>org.eclipse.jetty</groupId> <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> @@ -549,6 +566,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> <!-- System metrics --> <dependency> @@ -634,6 +657,16 @@ <version>${jersey-bom.version}</version> <type>pom</type> <scope>test</scope> + <exclusions> + <exclusion> + <groupId>org.eclipse.jetty</groupId> + <artifactId>jetty-server</artifactId> + </exclusion> + <exclusion> + <groupId>org.eclipse.jetty</groupId> + <artifactId>jetty-continuation</artifactId> + </exclusion> + </exclusions> </dependency> <dependency> @@ -647,6 +680,12 @@ <artifactId>jetty-webapp</artifactId> <version>${jetty.version}</version> <scope>test</scope> + <exclusions> + <exclusion> + <groupId>org.eclipse.jetty</groupId> + <artifactId>jetty-servlet</artifactId> + </exclusion> + </exclusions> </dependency> <dependency> @@ -740,7 +779,7 @@ <dependency> <groupId>org.codehaus.groovy</groupId> <artifactId>groovy</artifactId> - <version>2.4.8</version> + <version>${groovy.version}</version> </dependency> <dependency> |