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:

  1. Create 2 batch / shell script files, one for Linux/Unix and one for Windows/DOS
  2. Add all classpath dependencies (from Maven or simply use the build path in Eclipse)
  3. 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

link|improve this question

feedback

3 Answers

up vote 1 down vote accepted

In Maven the best solution for this is the maven-appassembler-plugin which handles the creation of a shell script / batch file. In combination with maven-assembly you can create a tar.gz or zip archive which contains everything which is needed.

link|improve this answer
Thank You! Is there such a thing for Ant? – Eran Medan Mar 10 '11 at 16:30
as far as i know No. – khmarbaise Mar 10 '11 at 17:48
feedback

Maven knows the dependency:build-classpath goal, which does most of the dirty work:

mvn dependency:build-classpath -DoutputFile=cp.txt

You can use this generated file in a shell script to create the java classpath (I know, it ain't much, but it'll get you started).

Or you can use the exec-maven-plugin to launch a main class from the current maven context. Something like this will do:

mvn compile org.codehaus.mojo:exec-maven-plugin:1.2:java \
    -Dexec.mainClass=com.yourcompany.YourClass
link|improve this answer
Thanks, is there an ANT solution? The best will be to use Eclipse classpath, but I have a feeling the industry / community is indeed leaning toward Maven, mayve I should as well... How about Gradle? – Eran Medan Mar 10 '11 at 15:07
feedback

One approach is to use a binary executable builder for Java applications. Some of these can be launched from ant with provided ant tasks.

For example, exe4j can create executables for command-line applications, and supports Windows, Linux and Mac. The executable wraps the Java code, its classpath, and JVM search path. A custom ant task "com.exe4j.Exe4JTask" supports generation of the executable from an exe4J configuration -- which can be created with a friendly wizard.

link|improve this answer
This is a great option. But I would like to keep it script based – Eran Medan Mar 10 '11 at 16:30
feedback

Your Answer

 
or
required, but never shown

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