You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@poi.apache.org by bu...@apache.org on 2021/01/23 23:19:07 UTC

[Bug 65101] New: Dependency Convergence issue with xml-apis on version 5.0.0

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: dev@poi.apache.org
          Reporter: dsubelman@redwood.cl
  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: dev-unsubscribe@poi.apache.org
For additional commands, e-mail: dev-help@poi.apache.org


[Bug 65101] Dependency Convergence issue with xml-apis on version 5.0.0

Posted by bu...@apache.org.
https://bz.apache.org/bugzilla/show_bug.cgi?id=65101

dsubelman@redwood.cl changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEEDINFO                    |NEW

-- 
You are receiving this mail because:
You are the assignee for the bug.
---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@poi.apache.org
For additional commands, e-mail: dev-help@poi.apache.org


[Bug 65101] Dependency Convergence issue with xml-apis on version 5.0.0

Posted by bu...@apache.org.
https://bz.apache.org/bugzilla/show_bug.cgi?id=65101

Dominik Stadler <do...@gmx.at> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |NEEDINFO

--- Comment #1 from Dominik Stadler <do...@gmx.at> ---
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: dev-unsubscribe@poi.apache.org
For additional commands, e-mail: dev-help@poi.apache.org


[Bug 65101] Dependency Convergence issue with xml-apis on version 5.0.0

Posted by bu...@apache.org.
https://bz.apache.org/bugzilla/show_bug.cgi?id=65101

Dominik Stadler <do...@gmx.at> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|---                         |DUPLICATE

--- Comment #7 from Dominik Stadler <do...@gmx.at> ---
I think this will be solved by switching to the Gradle build and more specific
as well as optional dependencies of batik.

*** This bug has been marked as a duplicate of bug 65206 ***

-- 
You are receiving this mail because:
You are the assignee for the bug.
---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@poi.apache.org
For additional commands, e-mail: dev-help@poi.apache.org


[Bug 65101] Dependency Convergence issue with xml-apis on version 5.0.0

Posted by bu...@apache.org.
https://bz.apache.org/bugzilla/show_bug.cgi?id=65101

--- Comment #4 from Daniel Subelman <ds...@redwood.cl> ---
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: dev-unsubscribe@poi.apache.org
For additional commands, e-mail: dev-help@poi.apache.org


[Bug 65101] Dependency Convergence issue with xml-apis on version 5.0.0

Posted by bu...@apache.org.
https://bz.apache.org/bugzilla/show_bug.cgi?id=65101

dsubelman@redwood.cl 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: dev-unsubscribe@poi.apache.org
For additional commands, e-mail: dev-help@poi.apache.org


[Bug 65101] Dependency Convergence issue with xml-apis on version 5.0.0

Posted by bu...@apache.org.
https://bz.apache.org/bugzilla/show_bug.cgi?id=65101

--- Comment #2 from dsubelman@redwood.cl ---
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: dev-unsubscribe@poi.apache.org
For additional commands, e-mail: dev-help@poi.apache.org


[Bug 65101] Dependency Convergence issue with xml-apis on version 5.0.0

Posted by bu...@apache.org.
https://bz.apache.org/bugzilla/show_bug.cgi?id=65101

Daniel Subelman <ds...@redwood.cl> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                URL|                            |https://issues.apache.org/j
                   |                            |ira/browse/BATIK-1297

--- Comment #6 from Daniel Subelman <ds...@redwood.cl> ---
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: dev-unsubscribe@poi.apache.org
For additional commands, e-mail: dev-help@poi.apache.org


[Bug 65101] Dependency Convergence issue with xml-apis on version 5.0.0

Posted by bu...@apache.org.
https://bz.apache.org/bugzilla/show_bug.cgi?id=65101

--- Comment #5 from PJ Fanning <fa...@yahoo.com> ---
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: dev-unsubscribe@poi.apache.org
For additional commands, e-mail: dev-help@poi.apache.org


[Bug 65101] Dependency Convergence issue with xml-apis on version 5.0.0

Posted by bu...@apache.org.
https://bz.apache.org/bugzilla/show_bug.cgi?id=65101

--- Comment #3 from PJ Fanning <fa...@yahoo.com> ---
The issue is in the batik dependencies.

-- 
You are receiving this mail because:
You are the assignee for the bug.
---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@poi.apache.org
For additional commands, e-mail: dev-help@poi.apache.org