diff options
author | Andreas Beeker <kiwiwings@apache.org> | 2018-12-16 14:55:23 +0000 |
---|---|---|
committer | Andreas Beeker <kiwiwings@apache.org> | 2018-12-16 14:55:23 +0000 |
commit | d45ec541cd7a5e0233b21d3995153df501afc6f6 (patch) | |
tree | cae86bd86ad4798c10d15f27002f4f2e5139a522 /build.gradle | |
parent | 2a84c1fa16618dc7271f97abf28f0c8e45078d3a (diff) | |
download | poi-d45ec541cd7a5e0233b21d3995153df501afc6f6.tar.gz poi-d45ec541cd7a5e0233b21d3995153df501afc6f6.zip |
#62365 - SVG image support in XSLF
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1849030 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'build.gradle')
-rw-r--r-- | build.gradle | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/build.gradle b/build.gradle index 4a0f9a6e6f..63e1d34e8d 100644 --- a/build.gradle +++ b/build.gradle @@ -91,7 +91,7 @@ subprojects { // See https://github.com/melix/japicmp-gradle-plugin apply plugin: 'me.champeau.gradle.japicmp' - version = '4.0.1-SNAPSHOT' + version = '4.0.2-SNAPSHOT' ext { japicmpversion = '4.0.0' } @@ -233,6 +233,11 @@ project('ooxml') { compile 'org.bouncycastle:bcpkix-jdk15on:1.60' compile 'com.github.virtuald:curvesapi:1.05' + // compile only, don't add it to our dist as it blows up the size + compile 'org.apache.xmlgraphics:batik-all:1.10' + compile 'xml-apis:xml-apis-ext:1.3.04' + compile 'org.apache.xmlgraphics:xmlgraphics-commons:2.3' + // for ooxml-lite, should we move this somewhere else? compile 'junit:junit:4.12' |