I am trying to create a standalone jar file I don't think that maven package is properly packaging my dependencies into the package. Is there a way to force it to include them?
| |||
|
feedback
|
|
Alternately you could use the jar-with-dependencies packaging of maven assembly plugin. | |||
|
feedback
|
|
You need to use the shade plugin. By default maven builds and packages the compile output from the current project. The shade plugin allows to you create an 'uber' jar that contains not just your code but all of the dependencies into a single (sometimes quite big) jar. Optionally allows you to relocate classes in the packaging phase, meaning that your project can have completely private copies of it's dependencies without getting caught in jar hell. | |||
|
feedback
|
maven packageis incorrect? – Jeremy Heiler Aug 9 '11 at 21:18