summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorgjoranv <gv@oath.com>2017-09-19 12:11:54 +0200
committergjoranv <gv@oath.com>2017-09-19 12:11:54 +0200
commit9bfdd24ac8732e1c6aef33c7a1d24c4cee57bb15 (patch)
tree1b3efbf92f3d656ef2154aabc571353e7bad6e3b
parentba8fcd381e64a10533f2d3ff9f9528e1262938e3 (diff)
Exclude com.ibu.icu:icu4j from provided classpath.
-rw-r--r--application/pom.xml4
-rw-r--r--container-dev/pom.xml4
2 files changed, 8 insertions, 0 deletions
diff --git a/application/pom.xml b/application/pom.xml
index 3c74611c5da..90aa0f1759a 100644
--- a/application/pom.xml
+++ b/application/pom.xml
@@ -85,6 +85,10 @@
for user projects must be added in compile scope here.
These dependencies are explicitly excluded (or set to non-compile scope) in the container-dev module. -->
<dependency>
+ <groupId>com.ibm.icu</groupId>
+ <artifactId>icu4j</artifactId>
+ </dependency>
+ <dependency>
<groupId>commons-collections</groupId>
<artifactId>commons-collections</artifactId>
</dependency>
diff --git a/container-dev/pom.xml b/container-dev/pom.xml
index 6968bb5c91f..8f5fbda504d 100644
--- a/container-dev/pom.xml
+++ b/container-dev/pom.xml
@@ -142,6 +142,10 @@
<version>${project.version}</version>
<exclusions>
<exclusion>
+ <groupId>com.ibm.icu</groupId>
+ <artifactId>icu4j</artifactId>
+ </exclusion>
+ <exclusion>
<groupId>commons-collections</groupId>
<artifactId>commons-collections</artifactId>
</exclusion>