Michael Schneider wrote: > Hi! > > Within my assembly I want to have a batch script (Unix shell), which > starts the java interpreter for some given class. The "-classpath" > parameter should be build from all dependency jars given in the POM. So > I want to have something like this: > > DEPSPATH=<dep1>:<dep2>:...:<depn> > java -classpath $DEPSPATH <class> [...]
How about the appassembler-maven-plugin? It creates a complete bundle including all dependencies and a script (bat/sh) for running. http://mojo.codehaus.org/appassembler/appassembler-maven-plugin/ HTH, -dirk -- A: Maybe because some people are too annoyed by top-posting. Q: Why do I not get an answer to my question(s)? A: Because it messes up the order in which people normally read text. Q: Why is top-posting such a bad thing? --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
