ucd_service_url=<URL for the UCD REST web service>
config_file_path=<location where the web app will store the generated XML configuration>
IA2 UCD service is at http://ia2-vo.oats.inaf.it:8080/ucd/
If the UCD web service is unreachable the web app will work anyway, but without the UCD search functionality.
Then build the web application:
* GlassFish war package (default):
mvn install
* Tomcat war package:
mvn -P Tomcat install
1. Create a `config.properties` file (copy it from `config.properties.example`). In this file it is specified:
***ucd_service_url**: the URL for the UCD REST web service.
* IA2 UCD service is at http://ia2-vo.oats.inaf.it/ucd/
* if the UCD web service is unreachable the web app will work anyway, but without the UCD search functionality.
***config_file_path**: the location where the web app will store the generated XML configuration (the location needs to be writable by the application server in which TASMAN will run).
2.`chmod +x build.sh`
3.`./build.sh <command>`, commands are:
***core** build only TASMAN core
***test**: run tests; you need to create a `test.properties` file containing a configuration for connecting to a MySQL and a Postgres test database
***glassfish**: build GlassFish war package
***tomcat**: build Tomcat war package (using config.properties file)
***embedded**: build embedded package (to be run _locally!_)