aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorgjoranv <gjoranv@gmail.com>2018-07-24 20:18:35 +0200
committerGitHub <noreply@github.com>2018-07-24 20:18:35 +0200
commitddd952a7bc5e4425cd2039bdad63491d3abf0dfe (patch)
tree7f2719ff0c58334d761b7ed2dd683cdf94344596
parentb1fe7eed9fd6e58975e0bef7bee8579170d4b35f (diff)
parent3de2d5829fc21e33c0942169983c6b4fa1ee6efb (diff)
Merge pull request #6460 from vespa-engine/gjoranv/exclude-language-detector
Exclude langauge-detector from container-dev.
-rw-r--r--application/pom.xml11
-rw-r--r--container-dev/pom.xml4
2 files changed, 15 insertions, 0 deletions
diff --git a/application/pom.xml b/application/pom.xml
index 3361ca85367..10d2a14721e 100644
--- a/application/pom.xml
+++ b/application/pom.xml
@@ -86,6 +86,17 @@
<artifactId>icu4j</artifactId>
</dependency>
<dependency>
+ <groupId>com.optimaize.languagedetector</groupId>
+ <artifactId>language-detector</artifactId>
+ <exclusions>
+ <exclusion>
+ <!-- We want to get this via jdisc-core -->
+ <groupId>org.slf4j</groupId>
+ <artifactId>slf4j-api</artifactId>
+ </exclusion>
+ </exclusions>
+ </dependency>
+ <dependency>
<groupId>commons-collections</groupId>
<artifactId>commons-collections</artifactId>
</dependency>
diff --git a/container-dev/pom.xml b/container-dev/pom.xml
index 6e45f42db32..27e2435d825 100644
--- a/container-dev/pom.xml
+++ b/container-dev/pom.xml
@@ -209,6 +209,10 @@
<version>${project.version}</version>
<exclusions>
<exclusion>
+ <groupId>com.optimaize.languagedetector</groupId>
+ <artifactId>language-detector</artifactId>
+ </exclusion>
+ <exclusion>
<groupId>org.apache.opennlp</groupId>
<artifactId>opennlp-tools</artifactId>
</exclusion>