summaryrefslogtreecommitdiffstats
path: root/container-dev/pom.xml
diff options
context:
space:
mode:
Diffstat (limited to 'container-dev/pom.xml')
-rw-r--r--container-dev/pom.xml37
1 files changed, 36 insertions, 1 deletions
diff --git a/container-dev/pom.xml b/container-dev/pom.xml
index 1d6f3331461..35417a314f8 100644
--- a/container-dev/pom.xml
+++ b/container-dev/pom.xml
@@ -97,6 +97,10 @@
<groupId>commons-lang</groupId>
<artifactId>commons-lang</artifactId>
</exclusion>
+ <exclusion>
+ <groupId>org.scala-lang</groupId>
+ <artifactId>scala-library</artifactId>
+ </exclusion>
</exclusions>
</dependency>
<dependency>
@@ -108,6 +112,10 @@
<groupId>org.ow2.asm</groupId>
<artifactId>asm</artifactId>
</exclusion>
+ <exclusion>
+ <groupId>org.scala-lang</groupId>
+ <artifactId>scala-library</artifactId>
+ </exclusion>
</exclusions>
</dependency>
<dependency>
@@ -142,6 +150,14 @@
<version>${project.version}</version>
<exclusions>
<exclusion>
+ <groupId>com.ibm.icu</groupId>
+ <artifactId>icu4j</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>commons-collections</groupId>
+ <artifactId>commons-collections</artifactId>
+ </exclusion>
+ <exclusion>
<groupId>commons-lang</groupId>
<artifactId>commons-lang</artifactId>
</exclusion>
@@ -149,6 +165,10 @@
<groupId>org.antlr</groupId>
<artifactId>antlr4-runtime</artifactId>
</exclusion>
+ <exclusion>
+ <groupId>xerces</groupId>
+ <artifactId>xercesImpl</artifactId>
+ </exclusion>
</exclusions>
</dependency>
<dependency>
@@ -157,6 +177,10 @@
<version>${project.version}</version>
<exclusions>
<exclusion>
+ <groupId>org.scala-lang</groupId>
+ <artifactId>scala-library</artifactId>
+ </exclusion>
+ <exclusion>
<!-- TODO: Remove exclusion when scala-xml is excluded in config-bundle pom -->
<groupId>org.scala-lang.modules</groupId>
<artifactId>scala-xml_${scala.major-version}</artifactId>
@@ -166,7 +190,18 @@
<!-- Dependencies below are added explicitly to exclude transitive deps that are not provided runtime by the container,
and hence make them invisible to user projects' build classpath.
- Excluded artifacts should be added explicitly to the application module to make then visible in users' test classpath. -->
+ Excluded artifacts should be added explicitly to the application module to make then visible in users' test classpath. -->
+ <dependency>
+ <groupId>com.yahoo.vespa</groupId>
+ <artifactId>document</artifactId>
+ <version>${project.version}</version>
+ <exclusions>
+ <exclusion>
+ <groupId>commons-collections</groupId>
+ <artifactId>commons-collections</artifactId>
+ </exclusion>
+ </exclusions>
+ </dependency>
<dependency>
<groupId>com.yahoo.vespa</groupId>
<artifactId>predicate-search-core</artifactId>