diff options
Diffstat (limited to 'build.gradle')
-rw-r--r-- | build.gradle | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/build.gradle b/build.gradle index cd7d8a4b3a..6b7b5cb2e0 100644 --- a/build.gradle +++ b/build.gradle @@ -103,6 +103,7 @@ subprojects { mockitoVersion = '3.6.0' hamcrestVersion = '2.2' xmlbeansVersion = '5.0.0' + batikVersion = '1.14' } tasks.withType(JavaCompile) { @@ -309,7 +310,9 @@ project('ooxml') { compile "org.apache.logging.log4j:log4j-api:${log4jVersion}" // compile only, don't add it to our dist as it blows up the size - compile 'org.apache.xmlgraphics:batik-all:1.14' + compile "org.apache.xmlgraphics:batik-svggen:${batikVersion}" + compile "org.apache.xmlgraphics:batik-bridge:${batikVersion}" + compile "org.apache.xmlgraphics:batik-codec:${batikVersion}" compile 'xml-apis:xml-apis-ext:1.3.04' compile 'org.apache.xmlgraphics:xmlgraphics-commons:2.4' |