diff options
author | Marius Volkhart <mariusvolkhart@apache.org> | 2021-03-14 18:56:30 +0000 |
---|---|---|
committer | Marius Volkhart <mariusvolkhart@apache.org> | 2021-03-14 18:56:30 +0000 |
commit | deb410b568f56fd292f94b85b7ef28d54bae7f2d (patch) | |
tree | ae13d1016918bebebf52b62393a0f09117449570 /sonar | |
parent | 21ba7dc108c71501196b5586567719f67eea4936 (diff) | |
download | poi-deb410b568f56fd292f94b85b7ef28d54bae7f2d.tar.gz poi-deb410b568f56fd292f94b85b7ef28d54bae7f2d.zip |
Exclude batik-script dependency from OOXML artifact
We do not make use of the batik-script dependency. While this is likely to be true of a variety of the Batik dependencies, batik-script causes problems for our users who are using JPMS. See [bug-65103].
Fixes #230
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1887643 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'sonar')
-rw-r--r-- | sonar/ooxml/pom.xml | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/sonar/ooxml/pom.xml b/sonar/ooxml/pom.xml index 6248a47d7a..90df1cbb9e 100644 --- a/sonar/ooxml/pom.xml +++ b/sonar/ooxml/pom.xml @@ -160,6 +160,12 @@ <groupId>org.apache.xmlgraphics</groupId> <artifactId>batik-bridge</artifactId> <version>1.14</version> + <exclusions> + <exclusion> + <groupId>org.apache.xmlgraphics</groupId> + <artifactId>batik-script</artifactId> + </exclusion> + </exclusions> </dependency> <dependency> <groupId>org.apache.xmlgraphics</groupId> |