-
Notifications
You must be signed in to change notification settings - Fork 26
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Dependency chaos with Apache POI #72
Comments
You probably don't need the Step 1 Put this in your
This should get rid of the Step 2 You will probably get errors such as:
or
Execute:
It will print something like this:
Remove the lines contaning Execute Step 3 If you still get errors, you may need to do additional adjustments to the |
It works! Thank you. I could never have figured that out myself. |
Great! Time to treat yourself with a Nutella Eis 😄 |
I am currently trying to use Apache POI, Java Fx and JAXB in the same Project. I tried it step by step, and it seems to break as soon as I add POI.
The Gradlefile currently looks like this.
If I do not use
forceMerge 'jaxb'
I get aerror: module not found: java.xml.bind
(Even though I actually have arequires java.xml.bind;
in my module-info.java.If I do use it I get a:
But if I add
implementation 'javax.activation:activation:1.1.1'
to the dependencies I getIs it possible to get this to work?
The text was updated successfully, but these errors were encountered: