[ 
https://issues.apache.org/jira/browse/BATIK-1297?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17585764#comment-17585764
 ] 

PJ Fanning commented on BATIK-1297:
-----------------------------------

BATIK-1329 should fix this

> 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.10#820010)

---------------------------------------------------------------------
To unsubscribe, e-mail: batik-dev-unsubscr...@xmlgraphics.apache.org
For additional commands, e-mail: batik-dev-h...@xmlgraphics.apache.org

Reply via email to