diff options
author | PJ Fanning <fanningpj@apache.org> | 2017-09-13 23:54:36 +0000 |
---|---|---|
committer | PJ Fanning <fanningpj@apache.org> | 2017-09-13 23:54:36 +0000 |
commit | 23ecb9a1722f41d7ac57b6d2c0bc4603c7e447d4 (patch) | |
tree | 359c52fa0aac828d6bd0ec85c8558ce3e91212ac /build.gradle | |
parent | e6d9be197ce5287e8d9cb243e0e8ab33187be265 (diff) | |
download | poi-23ecb9a1722f41d7ac57b6d2c0bc4603c7e447d4.tar.gz poi-23ecb9a1722f41d7ac57b6d2c0bc4603c7e447d4.zip |
Numeric Array Formula and Matrix Function [from Bob95132] This closes #69
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1808297 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'build.gradle')
-rw-r--r-- | build.gradle | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/build.gradle b/build.gradle index 236e8ea2c8..46be8f2e77 100644 --- a/build.gradle +++ b/build.gradle @@ -73,7 +73,7 @@ subprojects { // See https://github.com/melix/japicmp-gradle-plugin apply plugin: 'me.champeau.gradle.japicmp' - version = '3.16-beta3' + version = '3.18-beta1' ext { japicmpversion = '3.15' } @@ -150,7 +150,8 @@ project('main') { compile 'commons-codec:commons-codec:1.10' compile 'commons-logging:commons-logging:1.2' compile 'org.apache.commons:commons-collections4:4.1' - + compile 'org.apache.commons:commons-math3:3.6.1' + testCompile 'junit:junit:4.12' } @@ -196,6 +197,7 @@ project('ooxml') { dependencies { compile 'org.apache.xmlbeans:xmlbeans:2.6.0' compile 'org.apache.commons:commons-collections4:4.1' + compile 'org.apache.commons:commons-math3:3.6.1' compile 'org.apache.santuario:xmlsec:2.0.6' compile 'org.bouncycastle:bcpkix-jdk15on:1.54' compile 'com.github.virtuald:curvesapi:1.04' |