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.xml17
1 files changed, 16 insertions, 1 deletions
diff --git a/container-dev/pom.xml b/container-dev/pom.xml
index 1d6f3331461..46b68f5a592 100644
--- a/container-dev/pom.xml
+++ b/container-dev/pom.xml
@@ -142,6 +142,10 @@
<version>${project.version}</version>
<exclusions>
<exclusion>
+ <groupId>commons-collections</groupId>
+ <artifactId>commons-collections</artifactId>
+ </exclusion>
+ <exclusion>
<groupId>commons-lang</groupId>
<artifactId>commons-lang</artifactId>
</exclusion>
@@ -166,7 +170,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>