https://issues.apache.org/bugzilla/show_bug.cgi?id=57414

Nick Burch <[email protected]> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 OS|                            |All

--- Comment #1 from Nick Burch <[email protected]> ---
That looks a very complicated pom file, and if your project is just doing POI
stuff, it contains lots of things that aren't needed, and most likely one of
those is breaking it

You should be fine with just:


        <groupId>org.apache.poi</groupId>
            <artifactId>poi</artifactId>
            <version>3.11</version>
        </dependency>

        <dependency>
            <groupId>org.apache.poi</groupId>
            <artifactId>poi-ooxml</artifactId>
            <version>3.11</version>
        </dependency>

No need for any exclusions with 3.11, no need for anything else!

-- 
You are receiving this mail because:
You are the assignee for the bug.

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to