Skip to content

How to build ISAcreator from source

eamonnmag edited this page Feb 15, 2011 · 2 revisions

Assuming you have already got the ISAcreator code in your repository...

Download Maven

Maven is a dependency management system. You should download version 2.2.1 from the Maven site. http://www.apache.org/dyn/closer.cgi/maven/source/apache-maven-2.2.1-src.zip. Follow the instructions in the README.txt file to install it on your system...don't worry, it's not difficult.

Run Commands

To build the tool you should run this maven command

mvn clean assembly:assembly

This command will also run the tests on the code. You can skip the tests by adding -Dmaven.test.skip=true to the command.

This will create a target directory which will contain the ISAcreator-jar-with-dependencies.jar. This jar can be run simply by clicking it and is the package which we generally serve out to users.

Clone this wiki locally