diff options
author | Andreas Beeker <kiwiwings@apache.org> | 2018-06-22 21:25:00 +0000 |
---|---|---|
committer | Andreas Beeker <kiwiwings@apache.org> | 2018-06-22 21:25:00 +0000 |
commit | d193426a1dfba15641b3ff60c9eaf87d7cdd379d (patch) | |
tree | 337a80499c7ac0b27c67eefe4fc8173fe044adab /build.gradle | |
parent | 5bb9ab0609aba63cd16c6ae6edc1fe2797e02c78 (diff) | |
download | poi-d193426a1dfba15641b3ff60c9eaf87d7cdd379d.tar.gz poi-d193426a1dfba15641b3ff60c9eaf87d7cdd379d.zip |
#59268 - Work on providing an updated version of XMLBeans
(imported from https://github.com/apache/poi/pull/113)
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1834165 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'build.gradle')
-rw-r--r-- | build.gradle | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/build.gradle b/build.gradle index 1f32f6e2dc..01aa775e68 100644 --- a/build.gradle +++ b/build.gradle @@ -25,6 +25,12 @@ buildscript { } } +repositories { + maven { url "https://repository.apache.org/content/repositories/staging" } + mavenCentral() +} + + // Only add the plugin for Sonar if enabled if (project.hasProperty('enableSonar')) { println 'Enabling Sonar support' @@ -189,7 +195,7 @@ project('ooxml') { compileJava.dependsOn 'ant-compile-ooxml-xsds' dependencies { - compile 'org.apache.xmlbeans:xmlbeans:2.6.0' + compile 'org.apache.xmlbeans:xmlbeans:3.0.0' compile 'org.apache.commons:commons-collections4:4.1' compile 'org.apache.commons:commons-math3:3.6.1' compile 'org.apache.commons:commons-compress:1.17' |