summaryrefslogtreecommitdiffstats
path: root/container-dev
diff options
context:
space:
mode:
authorgjoranv <gv@oath.com>2017-09-15 17:21:02 +0200
committergjoranv <gv@oath.com>2017-09-15 17:21:02 +0200
commitd5896eda61a96c2135ed6618dacd1c9bd9695f5a (patch)
tree52cb6f26b0a5612e67c914e1154a9e9199f91032 /container-dev
parent147b113228e8df694e1bc37bed082fa90cd9df1f (diff)
Exclude commons-collections from provided classpath.
Diffstat (limited to 'container-dev')
-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>