aboutsummaryrefslogtreecommitdiffstats
path: root/config-bundle
diff options
context:
space:
mode:
authorgjoranv <gv@oath.com>2017-08-31 12:25:30 +0200
committergjoranv <gv@oath.com>2017-08-31 16:42:19 +0200
commit2bcc584022f761efa9968a3c126608b559b8fedb (patch)
tree55886bc3e9be78b82971e9f06884ca98d7e5099d /config-bundle
parentf6ec274aab8d1b4d2ac25c104bc5a603dc4156ff (diff)
Exclude scala-xml from provided classpath
- To prevent import-package for its packages. - scala-xml is only used to generate config classes, and is not needed or provided runtime. - Add scala-xml in scope test where it's used in unit tests.
Diffstat (limited to 'config-bundle')
-rw-r--r--config-bundle/pom.xml6
1 files changed, 6 insertions, 0 deletions
diff --git a/config-bundle/pom.xml b/config-bundle/pom.xml
index 43c08aad726..618a12def22 100644
--- a/config-bundle/pom.xml
+++ b/config-bundle/pom.xml
@@ -33,6 +33,12 @@
<groupId>com.yahoo.vespa</groupId>
<artifactId>configgen</artifactId>
<version>${project.version}</version>
+ <exclusions>
+ <exclusion>
+ <groupId>org.scala-lang.modules</groupId>
+ <artifactId>scala-xml_${scala.major-version}</artifactId>
+ </exclusion>
+ </exclusions>
</dependency>
<dependency>
<groupId>com.yahoo.vespa</groupId>