diff options
author | PJ Fanning <fanningpj@apache.org> | 2018-09-18 17:53:30 +0000 |
---|---|---|
committer | PJ Fanning <fanningpj@apache.org> | 2018-09-18 17:53:30 +0000 |
commit | bd17a094941595b5db4fb40ff09e3216999e9670 (patch) | |
tree | 13fede785014245ff4409e72ed6dc62ed10a6e0c /maven | |
parent | a326b6c3504dec6ec65d528b020450782d81e936 (diff) | |
download | poi-bd17a094941595b5db4fb40ff09e3216999e9670.tar.gz poi-bd17a094941595b5db4fb40ff09e3216999e9670.zip |
move commons-math3 dependency to poi pom.xml
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1841245 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'maven')
-rw-r--r-- | maven/poi-ooxml.pom | 5 | ||||
-rw-r--r-- | maven/poi.pom | 15 |
2 files changed, 10 insertions, 10 deletions
diff --git a/maven/poi-ooxml.pom b/maven/poi-ooxml.pom index 8bfabebe93..5350148c13 100644 --- a/maven/poi-ooxml.pom +++ b/maven/poi-ooxml.pom @@ -75,11 +75,6 @@ <version>1.18</version> </dependency> <dependency> - <groupId>org.apache.commons</groupId> - <artifactId>commons-math3</artifactId> - <version>3.6.1</version> - </dependency> - <dependency> <groupId>com.github.virtuald</groupId> <artifactId>curvesapi</artifactId> <version>1.05</version> diff --git a/maven/poi.pom b/maven/poi.pom index da2268759a..657726f86c 100644 --- a/maven/poi.pom +++ b/maven/poi.pom @@ -78,6 +78,16 @@ <artifactId>commons-codec</artifactId> <version>1.10</version> </dependency> + <dependency> + <groupId>org.apache.commons</groupId> + <artifactId>commons-collections4</artifactId> + <version>4.2</version> + </dependency> + <dependency> + <groupId>org.apache.commons</groupId> + <artifactId>commons-math3</artifactId> + <version>3.6.1</version> + </dependency> <dependency> <groupId>org.hamcrest</groupId> @@ -91,11 +101,6 @@ <scope>test</scope> <version>4.12</version> </dependency> - <dependency> - <groupId>org.apache.commons</groupId> - <artifactId>commons-collections4</artifactId> - <version>4.2</version> - </dependency> </dependencies> </project> |