diff options
author | Dominik Stadler <centic@apache.org> | 2018-08-23 20:23:20 +0000 |
---|---|---|
committer | Dominik Stadler <centic@apache.org> | 2018-08-23 20:23:20 +0000 |
commit | 3fea637adaa389f84a241fd395088aa206568920 (patch) | |
tree | d5d510113b2361fc125f9477115ff7b3b9658af9 /build.gradle | |
parent | bcc68c5f2003d10485f837a1e9442511656882b3 (diff) | |
download | poi-3fea637adaa389f84a241fd395088aa206568920.tar.gz poi-3fea637adaa389f84a241fd395088aa206568920.zip |
Adjust for JDK 11 ea-26 build, need to add jaxb via normal jar dependency now as it was removed from the JDK
Also needed to remove a few uses of Mockito which fail now with certain abstract classes
Update to Mockito 2.21
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1838763 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'build.gradle')
-rw-r--r-- | build.gradle | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/build.gradle b/build.gradle index c2abcc5ac9..7aa362a904 100644 --- a/build.gradle +++ b/build.gradle @@ -176,6 +176,10 @@ project('main') { compile 'commons-logging:commons-logging:1.2' compile 'org.apache.commons:commons-collections4:4.2' compile 'org.apache.commons:commons-math3:3.6.1' + compile 'javax.xml.bind:jaxb-api:2.3.0' + compile 'com.sun.xml.bind:jaxb-impl:2.3.0.1' + compile 'com.sun.xml.bind:jaxb-core:2.3.0.1' + compile 'javax.activation:activation:1.1.1' testCompile 'junit:junit:4.12' } @@ -234,7 +238,7 @@ project('ooxml') { compile files('../../ooxml-lib/ooxml-security-1.1.jar') testCompile 'junit:junit:4.12' - testCompile 'org.mockito:mockito-core:2.13.0' + testCompile 'org.mockito:mockito-core:2.21.0' testCompile 'org.xmlunit:xmlunit-core:2.5.1' testCompile project(path: ':main', configuration: 'tests') testCompile 'org.openjdk.jmh:jmh-core:1.19' |