summaryrefslogtreecommitdiffstats
path: root/maven
diff options
context:
space:
mode:
authorDavid North <dnorth@apache.org>2016-07-29 18:48:07 +0000
committerDavid North <dnorth@apache.org>2016-07-29 18:48:07 +0000
commit753699e48a311e4f01efcf1f1b3d159f53984ac9 (patch)
tree009ecc1e9ec4c222bc421c089dcab50b4ef8e6ab /maven
parente18a65b6dfec613f63eb34bf165bf9e224664438 (diff)
downloadpoi-753699e48a311e4f01efcf1f1b3d159f53984ac9.tar.gz
poi-753699e48a311e4f01efcf1f1b3d159f53984ac9.zip
As Nick suspected, the dependency is actually from HSSF too so commons collections 4 needs adding to the main POM
https://bz.apache.org/bugzilla/show_bug.cgi?id=59734 git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1754563 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'maven')
-rw-r--r--maven/poi-ooxml.pom5
-rw-r--r--maven/poi.pom5
2 files changed, 5 insertions, 5 deletions
diff --git a/maven/poi-ooxml.pom b/maven/poi-ooxml.pom
index 2f4c286bce..0f3cdb1d51 100644
--- a/maven/poi-ooxml.pom
+++ b/maven/poi-ooxml.pom
@@ -74,10 +74,5 @@
<artifactId>curvesapi</artifactId>
<version>1.04</version>
</dependency>
- <dependency>
- <groupId>org.apache.commons</groupId>
- <artifactId>commons-collections4</artifactId>
- <version>4.1</version>
- </dependency>
</dependencies>
</project>
diff --git a/maven/poi.pom b/maven/poi.pom
index 7c1b4cf84f..efd24cfe0b 100644
--- a/maven/poi.pom
+++ b/maven/poi.pom
@@ -91,6 +91,11 @@
<scope>test</scope>
<version>4.12</version>
</dependency>
+ <dependency>
+ <groupId>org.apache.commons</groupId>
+ <artifactId>commons-collections4</artifactId>
+ <version>4.1</version>
+ </dependency>
</dependencies>
</project>