I have a Java comman-line application, and wouldl like to create an Ant* build script that will create all the required batch / shell scripts to run the application succesfully including all classpath variables:
- Create 2 batch / shell script files, one for Linux/Unix and one for Windows/DOS
- Add all classpath dependencies (from Maven or simply use the build path in Eclipse)
- Add any nessecary boilerplate sh / bat code to run (ENV variables, JAVA_HOME...)
I found only a patial answer here: Is there a way to have Ant create a shell or batch runtime script?
But I haven't found anything that does this basic and trivial task that every build involves
* Disclaimer - the original question was Ant / Maven, but I would prefer to see if it can be done in Ant