aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--cloud-tenant-base-dependencies-enforcer/pom.xml2
-rw-r--r--container-test/pom.xml5
-rw-r--r--container/pom.xml4
3 files changed, 10 insertions, 1 deletions
diff --git a/cloud-tenant-base-dependencies-enforcer/pom.xml b/cloud-tenant-base-dependencies-enforcer/pom.xml
index bc18e544c45..23af7baf4b7 100644
--- a/cloud-tenant-base-dependencies-enforcer/pom.xml
+++ b/cloud-tenant-base-dependencies-enforcer/pom.xml
@@ -105,7 +105,6 @@
<include>xml-apis:xml-apis:${xml-apis.version}:provided</include>
<!-- Vespa provided dependencies -->
- <include>com.yahoo.vespa:airlift-zstd:*:provided</include>
<include>com.yahoo.vespa:annotations:*:provided</include>
<include>com.yahoo.vespa:component:*:provided</include>
<include>com.yahoo.vespa:config-bundle:*:provided</include>
@@ -148,6 +147,7 @@
<include>com.yahoo.vespa:vespalog:*:provided</include>
<!-- Vespa test dependencies -->
+ <include>com.yahoo.vespa:airlift-zstd:*:test</include>
<include>com.yahoo.vespa:application:*:test</include>
<include>com.yahoo.vespa:cloud-tenant-cd:*:test</include>
<include>com.yahoo.vespa:config-application-package:*:test</include>
diff --git a/container-test/pom.xml b/container-test/pom.xml
index 829372ea8fb..88307969d8a 100644
--- a/container-test/pom.xml
+++ b/container-test/pom.xml
@@ -47,6 +47,11 @@
for user projects must be added in compile scope here. These dependencies are explicitly excluded
(or set to non-compile scope) in the container and/or container-dev modules. -->
<dependency>
+ <groupId>com.yahoo.vespa</groupId>
+ <artifactId>airlift-zstd</artifactId>
+ <version>${project.version}</version>
+ </dependency>
+ <dependency>
<groupId>com.ibm.icu</groupId>
<artifactId>icu4j</artifactId>
</dependency>
diff --git a/container/pom.xml b/container/pom.xml
index 10322758d1a..5a48394accd 100644
--- a/container/pom.xml
+++ b/container/pom.xml
@@ -30,6 +30,10 @@
<groupId>org.ow2.asm</groupId>
<artifactId>asm</artifactId>
</exclusion>
+ <exclusion>
+ <groupId>com.yahoo.vespa</groupId>
+ <artifactId>airlift-zstd</artifactId>
+ </exclusion>
</exclusions>
</dependency>
<dependency>