summaryrefslogtreecommitdiffstats
path: root/container-search/pom.xml
diff options
context:
space:
mode:
authorBjørn Christian Seime <bjorncs@verizonmedia.com>2022-06-02 16:11:32 +0200
committergjoranv <gv@verizonmedia.com>2022-06-08 11:45:26 +0200
commitda36b1957fad0b49ba53de7c35b859a3b55bc501 (patch)
treee19b0cb0e4d0b211fb67154ba3c769b3943b4985 /container-search/pom.xml
parentdcddd40a4e24b004f00d3be7d9c0e66cf1e2d9a1 (diff)
Don't provide Jetty bundles from 'container' artifact
Add dependency on 'jetty-http' with scope test instead of adding false dependencies with 'container-test'.
Diffstat (limited to 'container-search/pom.xml')
-rw-r--r--container-search/pom.xml7
1 files changed, 7 insertions, 0 deletions
diff --git a/container-search/pom.xml b/container-search/pom.xml
index d410eb1c2c6..096a49df3a1 100644
--- a/container-search/pom.xml
+++ b/container-search/pom.xml
@@ -156,6 +156,13 @@
<artifactId>assertj-core</artifactId>
<scope>test</scope>
</dependency>
+ <dependency>
+ <!-- TODO Remove when Jetty is embedded inside container-core -->
+ <groupId>org.eclipse.jetty</groupId>
+ <artifactId>jetty-http</artifactId>
+ <scope>test</scope>
+ <version>${jetty.version}</version>
+ </dependency>
</dependencies>
<build>
<plugins>