I\'m relatively new to the Maven mantra, but I\'m trying to build a command-line runnable jar with Maven. I\'ve setup my dependencies, but when I run mvn install
I Agree with Joachim Sauer,
Instead of using jar-with-dependency you should configure the jar plugin like that in your pom.xml:
org.apache.maven.plugins
maven-jar-plugin
2.4
true
true
[mainClassFullName]
development
${project.url}
value
And use this assembly configuration to add the jar dependencies to you assembly:
zip-with-jars
zip
false
/
true
false
runtime