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 6b7b5cb2e0..845d107044 100644 --- a/build.gradle +++ b/build.gradle @@ -311,7 +311,9 @@ project('ooxml') { // compile only, don't add it to our dist as it blows up the size compile "org.apache.xmlgraphics:batik-svggen:${batikVersion}" - compile "org.apache.xmlgraphics:batik-bridge:${batikVersion}" + compile("org.apache.xmlgraphics:batik-bridge:${batikVersion}") { + exclude group: 'org.apache.xmlgraphics', module: 'batik-script' + } compile "org.apache.xmlgraphics:batik-codec:${batikVersion}" compile 'xml-apis:xml-apis-ext:1.3.04' compile 'org.apache.xmlgraphics:xmlgraphics-commons:2.4' @@ -420,6 +422,7 @@ project('integrationtest') { test { // exclude these from the normal test-run + exclude '**/TestAllFiles.class' exclude '**/*FileHandler.class' } |