-
Notifications
You must be signed in to change notification settings - Fork 40
Dimitris Kontokostas edited this page Aug 30, 2014
·
4 revisions
The RDFUnit web service uses the exact same arguments as the CLI. To run it from maven just run
# from root folder
mvn -pl rdfunit-validate -am clean install jetty:run
# or
mvn clean install
cd rdfunit-validate
mvn jetty:run
to deploy it in a server as war copy the war
file from rdfunit-validate/target/
folder after doing the following:
# from root folder
mvn -pl rdfunit-validate -am clean install package
# or
mvn clean install
cd rdfunit-validate
mvn package
Note: The Web Service is not optimized at the moment for concurrent & sequential use. Every time we reload / regenerate all test cases for the given schemas.
We plan to heavily refactor the test generation process.