aboutsummaryrefslogtreecommitdiffstats
path: root/tenant-base
diff options
context:
space:
mode:
authorJon Marius Venstad <venstad@gmail.com>2019-10-10 19:40:23 +0200
committerJon Marius Venstad <venstad@gmail.com>2019-10-10 19:40:23 +0200
commite1e7eee6f8ac3af6a514fd6d9d18bb055699d80a (patch)
treef578cb7509a9d976ee6f1d2fe09f40689970a0c1 /tenant-base
parentba06a7060f43ed13b6991de5849a5654ecec1999 (diff)
Exclude banned dependencies
Diffstat (limited to 'tenant-base')
-rw-r--r--tenant-base/pom.xml24
1 files changed, 24 insertions, 0 deletions
diff --git a/tenant-base/pom.xml b/tenant-base/pom.xml
index 66a277124f2..0698cf3c54f 100644
--- a/tenant-base/pom.xml
+++ b/tenant-base/pom.xml
@@ -78,6 +78,16 @@
<artifactId>container-test</artifactId>
<version>${vespaversion}</version>
<scope>test</scope>
+ <exclusions>
+ <exclusion>
+ <groupId>org.apache.commons</groupId>
+ <artifactId>commons-exec</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>commons-lang</groupId>
+ <artifactId>commons-lang</artifactId>
+ </exclusion>
+ </exclusions>
</dependency>
<dependency>
@@ -85,6 +95,20 @@
<artifactId>tenant-cd</artifactId>
<version>${vespaversion}</version>
<scope>test</scope>
+ <exclusions>
+ <exclusion>
+ <groupId>net.java.dev.jna</groupId>
+ <artifactId>jna</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>org.apache.commons</groupId>
+ <artifactId>commons-exec</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>commons-lang</groupId>
+ <artifactId>commons-lang</artifactId>
+ </exclusion>
+ </exclusions>
</dependency>
</dependencies>