https://bz.apache.org/bugzilla/show_bug.cgi?id=65101
Bug ID: 65101 Summary: Dependency Convergence issue with xml-apis on version 5.0.0 Product: POI Version: unspecified Hardware: Macintosh Status: NEW Severity: normal Priority: P2 Component: POI Overall Assignee: [hidden email] Reporter: [hidden email] Target Milestone: --- There is dependency convergence issue with xml-apis (v1.3.04 and v1.4.01). Here is maven-enforcer-plugin report: +-org.apache.poi:poi-ooxml:5.0.0 +-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.poi:poi-ooxml:5.0.0 +-org.apache.xmlgraphics:batik-all:1.13 +-org.apache.xmlgraphics:batik-dom:1.13 +-xml-apis:xml-apis:1.4.01 -- You are receiving this mail because: You are the assignee for the bug. --------------------------------------------------------------------- To unsubscribe, e-mail: [hidden email] For additional commands, e-mail: [hidden email] |
https://bz.apache.org/bugzilla/show_bug.cgi?id=65101
[hidden email] changed: What |Removed |Added ---------------------------------------------------------------------------- Hardware|Macintosh |All OS| |All -- You are receiving this mail because: You are the assignee for the bug. --------------------------------------------------------------------- To unsubscribe, e-mail: [hidden email] For additional commands, e-mail: [hidden email] |
In reply to this post by Bugzilla from bugzilla@apache.org
https://bz.apache.org/bugzilla/show_bug.cgi?id=65101
Dominik Stadler <[hidden email]> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |NEEDINFO --- Comment #1 from Dominik Stadler <[hidden email]> --- Can you work around this by specifying the newer version of xml-apis in your pom.xml explicitely? As far as I remember this is a way to get rid of such "maven-enforcer" violations locally. -- You are receiving this mail because: You are the assignee for the bug. --------------------------------------------------------------------- To unsubscribe, e-mail: [hidden email] For additional commands, e-mail: [hidden email] |
In reply to this post by Bugzilla from bugzilla@apache.org
https://bz.apache.org/bugzilla/show_bug.cgi?id=65101
--- Comment #2 from [hidden email] --- Sure, that's the work around I implemented and got rid of the "maven-enforcer" violation. The current pom.xml looks like this: <dependencies> <dependency> <groupId>org.apache.poi</groupId> <artifactId>poi-ooxml</artifactId> <version>5.0.0</version> <exclusions> <exclusion> <groupId>xml-apis</groupId> <artifactId>xml-apis</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>xml-apis</groupId> <artifactId>xml-apis</artifactId> <version>1.4.01</version> </dependency> </dependencies> However, I'm reporting this because the dependency conflict is within poi-ooxml and I think it should be tackle there. -- You are receiving this mail because: You are the assignee for the bug. --------------------------------------------------------------------- To unsubscribe, e-mail: [hidden email] For additional commands, e-mail: [hidden email] |
In reply to this post by Bugzilla from bugzilla@apache.org
https://bz.apache.org/bugzilla/show_bug.cgi?id=65101
[hidden email] changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEEDINFO |NEW -- You are receiving this mail because: You are the assignee for the bug. --------------------------------------------------------------------- To unsubscribe, e-mail: [hidden email] For additional commands, e-mail: [hidden email] |
In reply to this post by Bugzilla from bugzilla@apache.org
https://bz.apache.org/bugzilla/show_bug.cgi?id=65101
--- Comment #3 from PJ Fanning <[hidden email]> --- The issue is in the batik dependencies. -- You are receiving this mail because: You are the assignee for the bug. --------------------------------------------------------------------- To unsubscribe, e-mail: [hidden email] For additional commands, e-mail: [hidden email] |
In reply to this post by Bugzilla from bugzilla@apache.org
https://bz.apache.org/bugzilla/show_bug.cgi?id=65101
--- Comment #4 from Daniel Subelman <[hidden email]> --- You are right, should I report the issue there? -- You are receiving this mail because: You are the assignee for the bug. --------------------------------------------------------------------- To unsubscribe, e-mail: [hidden email] For additional commands, e-mail: [hidden email] |
In reply to this post by Bugzilla from bugzilla@apache.org
https://bz.apache.org/bugzilla/show_bug.cgi?id=65101
--- Comment #5 from PJ Fanning <[hidden email]> --- probably best to start with https://issues.apache.org/jira/projects/BATIK -- You are receiving this mail because: You are the assignee for the bug. --------------------------------------------------------------------- To unsubscribe, e-mail: [hidden email] For additional commands, e-mail: [hidden email] |
In reply to this post by Bugzilla from bugzilla@apache.org
https://bz.apache.org/bugzilla/show_bug.cgi?id=65101
Daniel Subelman <[hidden email]> changed: What |Removed |Added ---------------------------------------------------------------------------- URL| |https://issues.apache.org/j | |ira/browse/BATIK-1297 --- Comment #6 from Daniel Subelman <[hidden email]> --- I reported the issue in BATIK (https://issues.apache.org/jira/browse/BATIK-1297). I'll post here any update from them. -- You are receiving this mail because: You are the assignee for the bug. --------------------------------------------------------------------- To unsubscribe, e-mail: [hidden email] For additional commands, e-mail: [hidden email] |
Free forum by Nabble | Edit this page |