summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorgjoranv <gjoranv@gmail.com>2017-09-14 21:31:31 +0200
committerGitHub <noreply@github.com>2017-09-14 21:31:31 +0200
commit8d91d6bfc7dec56b1bab3f81be595b2f6fba7780 (patch)
treee1bed061930308ee40ff2672e993cb92facd15ab
parented7e1c05a909699b84d53bc2e8e63b453207cb19 (diff)
parent2b97afe84ad6ce93e2514da0ab4990da6ad3a179 (diff)
Merge pull request #3413 from vespa-engine/gjoranv/exclude-commons-exec
Exclude commons-exec from provided classpath.
-rw-r--r--application/pom.xml4
-rw-r--r--container-dev/pom.xml4
2 files changed, 8 insertions, 0 deletions
diff --git a/application/pom.xml b/application/pom.xml
index b03c1aa8eed..3ea1b8270f4 100644
--- a/application/pom.xml
+++ b/application/pom.xml
@@ -93,6 +93,10 @@
<artifactId>antlr4-runtime</artifactId>
</dependency>
<dependency>
+ <groupId>org.apache.commons</groupId>
+ <artifactId>commons-exec</artifactId>
+ </dependency>
+ <dependency>
<groupId>org.hdrhistogram</groupId>
<artifactId>HdrHistogram</artifactId>
</dependency>
diff --git a/container-dev/pom.xml b/container-dev/pom.xml
index 1fb1c9b1bd2..1d6f3331461 100644
--- a/container-dev/pom.xml
+++ b/container-dev/pom.xml
@@ -122,6 +122,10 @@
<version>${project.version}</version>
<exclusions>
<exclusion>
+ <groupId>org.apache.commons</groupId>
+ <artifactId>commons-exec</artifactId>
+ </exclusion>
+ <exclusion>
<groupId>commons-lang</groupId>
<artifactId>commons-lang</artifactId>
</exclusion>