Re: How to make executable jar file with dependency?

2005-01-28 Thread Andy Lawrence
I've had better luck with this: http://maven-plugins.sourceforge.net/maven-javaapp-plugin/index.html with uberjar, it packaged just fine, but there was a *long* delay in starting up. I don't exactly remember the reasons anymore, but basically, to get dependent jars into your classpath (and those

Re: How to make executable jar file with dependency?

2005-01-28 Thread Pascal Thivent
Hi, I think this is what you're looking for : http://maven.apache.org/reference/plugins/uberjar/ On Fri, 28 Jan 2005 16:35:51 -0500, Chen, Andrew . <[EMAIL PROTECTED]> wrote: > Hi, > > Our codes depend on some external libraries, such as xerces.jar, xalan.jar, > .. > > How to make an executable

How to make executable jar file with dependency?

2005-01-28 Thread Chen, Andrew .
Hi, Our codes depend on some external libraries, such as xerces.jar, xalan.jar, .. How to make an executable jar that include everything? My end command is expected to be: java -jar myprj.jar What is the best practice in Maven to deploy pure non-j2ee java code? Should I pack everything into o