Tagged Questions
4
votes
2answers
887 views
Including a non-Mavenized dependency so it works with maven-shade-plugin
I want to include GData Client, which doesn't use Maven, as a dependency into my Maven project. It ships as a bunch of JAR files.
Additionaly, I use Maven Shade Plugin to build an executable JAR ...
0
votes
0answers
17 views
FileNotFoundException after packing in executable jar
After using maven shade plugin and running the executable jar, my application failed due to FileNotFoundException. During the application development I put my files in src/main/resources and so my ...
0
votes
1answer
207 views
Can the Maven shade plugin fail the build when there are duplicate classes?
The Maven shade plugin coalesces your project's Java classes along with its dependencies into a single über JAR file. If there is any overlap (e.g. two dependencies contain a class with the same ...