-
Notifications
You must be signed in to change notification settings - Fork 26
How to build ISAcreator from source
Assuming you have already got the ISAcreator code in your repository...
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.
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.
Created by the ISA-tools team.