aboutsummaryrefslogtreecommitdiffstats
path: root/container-core
diff options
context:
space:
mode:
authorgjoranv <gv@oath.com>2018-07-25 17:59:33 +0200
committergjoranv <gv@oath.com>2018-07-25 18:28:24 +0200
commite4ba3c4112390b1cf808e0733335d9bbcddff0e2 (patch)
tree22022d0f92064018a4ce08ee475b71402ff690a0 /container-core
parentd02050062ddbea3d313f7e24da61d0ba5cc85c4a (diff)
Exclude guava and slf4j-api in container-core
.. to prevent embedding them in container-disc and potentially other bundles. - Must be compile scope in linguistics because they're needed to run tests in modules depending on linguistics, e.g. indexinglanguage.
Diffstat (limited to 'container-core')
-rw-r--r--container-core/pom.xml10
1 files changed, 10 insertions, 0 deletions
diff --git a/container-core/pom.xml b/container-core/pom.xml
index d8473c8b541..d51930b5059 100644
--- a/container-core/pom.xml
+++ b/container-core/pom.xml
@@ -95,9 +95,19 @@
<version>${project.version}</version>
<exclusions>
<exclusion>
+ <!-- Pulled in by language-detector in scope compile -->
+ <groupId>com.google.guava</groupId>
+ <artifactId>guava</artifactId>
+ </exclusion>
+ <exclusion>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
</exclusion>
+ <exclusion>
+ <!-- Pulled in by language-detector in scope compile -->
+ <groupId>org.slf4j</groupId>
+ <artifactId>slf4j-api</artifactId>
+ </exclusion>
</exclusions>
</dependency>
<dependency>