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 ...
1
vote
2answers
279 views

ClassNotFound exception while using the Maven Shade Plugin

I am trying to follow this link: http://maven.apache.org/plugins/maven-shade-plugin/examples.html I am new to Maven. I feel a bit out of depth trying to follow the example. I am able to get Quartz ...
1
vote
1answer
747 views

m2eclipse : Maven dependencies as JAR's not projects

I'm having maven project on Eclipse with m2eclipse plugin. This project has some dependencies. Some of them are libraries as slf4j, apache-commons etc. But there are also mine libraries, that I'm ...
0
votes
0answers
21 views

Including non-maven projects' source using Shade plugin

My mavenised GWT web project has dependencies on svn projects, where there on jars built. They are not maven projects or modules I do not have privs to change the build structure of those projects. I ...
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 ...