[
https://issues.apache.org/jira/browse/BATIK-1297?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17489446#comment-17489446
]
Simon Steiner commented on BATIK-1297:
--------------------------------------
If I run mvn dependency:tree i dont see:
xml-apis:1.3
> Dependency Convergence issue with xml-apis
> ------------------------------------------
>
> Key: BATIK-1297
> URL: https://issues.apache.org/jira/browse/BATIK-1297
> Project: Batik
> Issue Type: Bug
> Components: Build Tools
> Affects Versions: 1.14
> Reporter: Daniel Subelman
> Priority: Minor
>
> There is dependency convergence issue with xml-apis (v1.3.04 and v1.4.01).
> Here is maven-enforcer-plugin report:
> {code:java}
> +-org.apache.xmlgraphics:batik-all:1.13
> +-org.apache.xmlgraphics:batik-dom:1.13
> +-xalan:xalan:2.7.2
> +-xalan:serializer:2.7.2
> +-xml-apis:xml-apis:1.3.04
> +-org.apache.xmlgraphics:batik-all:1.13
> +-org.apache.xmlgraphics:batik-dom:1.13
> +-xml-apis:xml-apis:1.4.01
> {code}
> One way to fix this issue is to exclude xml-apis from xalan dependency by
> modifing the pom.xml file in batik-dom from:
>
> {code:xml}
> <dependency>
> <groupId>xalan</groupId>
> <artifactId>xalan</artifactId>
> <version>${xalan.version}</version>
> </dependency>
> {code}
>
> to:
>
> {code:xml}
> <dependency>
> <groupId>xalan</groupId>
> <artifactId>xalan</artifactId>
> <version>${xalan.version}</version>
> <exclusions>
> <exclusion>
> <groupId>xml-apis</groupId>
> <artifactId>xml-apis</artifactId>
> </exclusion>
> </exclusions>
> </dependency>
> {code}
>
>
>
--
This message was sent by Atlassian Jira
(v8.20.1#820001)
---------------------------------------------------------------------
To unsubscribe, e-mail: batik-dev-unsubscr...@xmlgraphics.apache.org
For additional commands, e-mail: batik-dev-h...@xmlgraphics.apache.org