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?

link|improve this question

What makes you think that maven package is incorrect? – Jeremy Heiler Aug 9 '11 at 21:18
It didn't include all the dependencies that I needed – chustar Aug 12 '11 at 16:09
feedback

2 Answers

up vote 4 down vote accepted

Alternately you could use the jar-with-dependencies packaging of maven assembly plugin.

link|improve this answer
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.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.