Qucik start guide for the Java Implementation Project
Required software
Steps to download, build and install
- Open a command line console
- Optionaly create a new directory, or use an exsiting one; cd to it
- Type 'svn co http://svn.openehr.org/ref_impl_java/TRUNK openehr-java' to downlaod components from the TRUNK
- cd to openehr-java directory
- Type 'mvn clean install' to build, test and install all components
- To get source updated, stand in openehr-java and type 'svn update'
You can also find jar and javadoc files from
download page.
Useful commands
- Run all testcase of a single component: cd to the top directory of the source tree and type 'mvn clean test'
- Run a single testcase mvn test -Dtest={testcase}, e.g mvn test -Dtest=DvTimeTest
Back to the Java project page