[ https://issues.apache.org/jira/browse/BATIK-1297?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17300995#comment-17300995 ]
Daniel Subelman commented on BATIK-1297: ---------------------------------------- Thanks [~mariusvolkhart] for the PR that solves the issue. I'm using Apache POI as dependency (that depends on Batik), so I think I'll have to be patient before I can remove the exclusion from the pom.xml... ;) > 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.3.4#803005) --------------------------------------------------------------------- To unsubscribe, e-mail: batik-dev-unsubscr...@xmlgraphics.apache.org For additional commands, e-mail: batik-dev-h...@xmlgraphics.apache.org