summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorgjoranv <gv@oath.com>2018-07-24 17:34:10 +0200
committergjoranv <gv@oath.com>2018-07-24 20:17:29 +0200
commit3de2d5829fc21e33c0942169983c6b4fa1ee6efb (patch)
tree7f2719ff0c58334d761b7ed2dd683cdf94344596
parentb1fe7eed9fd6e58975e0bef7bee8579170d4b35f (diff)
Exclude langauge-detector from container-dev
.. and add it to the test classpath for application. - This is to prepare for an external PR to add language detection.
-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>