diff options
author | PJ Fanning <fanningpj@apache.org> | 2024-10-09 20:02:56 +0000 |
---|---|---|
committer | PJ Fanning <fanningpj@apache.org> | 2024-10-09 20:02:56 +0000 |
commit | ad8b9f0b6d11e834f272acb0a6b52f410c7aa667 (patch) | |
tree | 191d1e9090a0b00cea53f3635c7570ddd4d5e7b9 | |
parent | cab699001e6c911badcf0a86da1fdcdbb706edc6 (diff) | |
download | poi-ad8b9f0b6d11e834f272acb0a6b52f410c7aa667.tar.gz poi-ad8b9f0b6d11e834f272acb0a6b52f410c7aa667.zip |
try to get rid of batik fix
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1921220 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r-- | poi-ooxml/build.gradle | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/poi-ooxml/build.gradle b/poi-ooxml/build.gradle index a09fecceff..0f785b1aca 100644 --- a/poi-ooxml/build.gradle +++ b/poi-ooxml/build.gradle @@ -89,6 +89,10 @@ dependencies { exclude group: 'xalan', module: 'xalan' exclude group: 'xml-apis', module: 'xml-apis' } + renderImplementation("org.apache.xmlgraphics:batik-script:${batikVersion}") { + exclude group: 'xalan', module: 'xalan' + exclude group: 'xml-apis', module: 'xml-apis' + } rendersignImplementation "org.apache.pdfbox:pdfbox:${pdfboxVersion}" rendersignImplementation "de.rototor.pdfbox:graphics2d:${graphics2dVersion}" @@ -105,6 +109,10 @@ dependencies { exclude group: 'xalan', module: 'xalan' exclude group: 'xml-apis', module: 'xml-apis' } + rendersignImplementation("org.apache.xmlgraphics:batik-script:${batikVersion}") { + exclude group: 'xalan', module: 'xalan' + exclude group: 'xml-apis', module: 'xml-apis' + } if (!NO_SCRATCHPAD) { |