├── .gitignore ├── README.md ├── .gitmodules └── pom.xml /.gitignore: -------------------------------------------------------------------------------- 1 | # Mac OS X 2 | .DS_Store -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | This is the parent for the ecg-analysis project. 2 | 3 | ``` 4 | git clone git@github.com:pangratz/ecg-analysis-parent.git 5 | cd ecg-analysis-parent 6 | git submodule init 7 | git submodule update 8 | cd physiotoolkit-wrapper 9 | rake 10 | cd .. 11 | 12 | mvn clean package 13 | ``` -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | [submodule "physiotoolkit-wrapper"] 2 | path = physiotoolkit-wrapper 3 | url = git@github.com:pangratz/physiotoolkit-wrapper.git 4 | [submodule "heartman-bluetooth-recorder"] 5 | path = heartman-bluetooth-recorder 6 | url = git@github.com:pangratz/heartman-bluetooth-recorder.git 7 | [submodule "ecg-analysis"] 8 | path = ecg-analysis 9 | url = git@github.com:pangratz/ecg-analysis.git 10 | -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- 1 | 5 | 4.0.0 6 | 7 | at.jku.pervasive.ecg 8 | msc-thesis 9 | pom 10 | 0.0.1-SNAPSHOT 11 | MSc Thesis Parent Project 12 | 13 | 14 | ecg-analysis 15 | heartman-bluetooth-recorder 16 | physiotoolkit-wrapper 17 | 18 | 19 | 20 | 21 | 22 | 23 | org.apache.maven.plugins 24 | maven-compiler-plugin 25 | 26 | 1.6 27 | 1.6 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | junit 37 | junit 38 | 3.8.1 39 | test 40 | 41 | 42 | --------------------------------------------------------------------------------