Building VARS
Setting up for Development
Detailed instructions for building VARS are available in the Subversion repository at https://vars.svn.sourceforge.net/svnroot/vars/trunk/README. Be sure that you have the prerequisites listed in the README installed before attempting to build VARS.
Building VARS - the short course
Check out the source from version control using Subversion
svn co https://vars.svn.sourceforge.net/svnroot/vars/trunk vars
More details on Subversion can be found here
Build using Maven
cd vars mvn clean install -Denvironment=dev -Dmaven.test.skip=true
Run the applications
- The VARS applications are packaged up as a zip file...go to it.
cd vars/vars-deploy/vars-app/target
- Extract the zip file, vars-[VERSION]-standalone4dev.zip
- In the extracted bin directory, you'll need to do the following:
- On Macs, Linux or Unix execute
chmod u+x *
- Start the database server using derbyStart(.bat)
- The first time you run VARS after a build you will need to run the Knowledgebase application in order to create an administrator account. Use knowledgebase(.bat) to start it.
- You can launch the annotation application using annotation(.bat) and the Query application using query(.bat)
- When you're done you can stop the database server using derbyStop(.bat)