aboutsummaryrefslogtreecommitdiffstats
path: root/container-dev
diff options
context:
space:
mode:
authorgjoranv <gv@oath.com>2017-09-19 14:55:53 +0200
committergjoranv <gv@oath.com>2017-09-19 14:56:14 +0200
commit98cef1be199678cebad6e9bb6c757265c228875c (patch)
tree04710533e97f76299ca99c906963fd60aa653219 /container-dev
parentd825bb328c94e138ea87301282c85cc4edb5e585 (diff)
Exclude scala-library from provided classpath.
- Still available in test classpath, as application has a compile scope dep.
Diffstat (limited to 'container-dev')
-rw-r--r--container-dev/pom.xml12
1 files changed, 12 insertions, 0 deletions
diff --git a/container-dev/pom.xml b/container-dev/pom.xml
index 8f5fbda504d..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>
@@ -169,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>