Qucik start guide for the Java Implementation Project
Required software
Steps to download, build and install
- Open a command line console
- Create a new directory, e.g. openehr-java, or use an existing one; cd to it
- Type 'svn co http://www.openehr.org/svn/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' and repeat 5
Similarly you can build components from the SANDBOX area.
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=your.testcase.without.fullpath, e.g mvn test -Dtest=DvTimeTest
Back to the Java project page