Tagged Questions
4
votes
2answers
863 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
1answer
192 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 ...