# MOA ZS ## Prepare Repo Some dependencies are not in the mvn central repo. You need to install those dependencies to your local maven repository with `mvn install`. Check `pom.xml` and follow the instructions. ## How to install `eaaf_module_moa-sig` ``` export EAAF_COMPONENTS_VERSION=1.0.7 cd /path/to/working/dir git clone https://gitlab.iaik.tugraz.at/egiz/eaaf_components/ cd eaaf_components git checkout $EAAF_COMPONENTS_VERSION mvn package javadoc:jar sources:jar mvn install:install-file -DgroupId=at.gv.egiz.eaaf -DartifactId=eaaf_module_moa-sig \ -Dversion=$EAAF_COMPONENTS_VERSION -Dpackaging=jar \ -Dfile=eaaf_modules/eaaf_module_moa-sig/target/eaaf_module_moa-sig-$EAAF_COMPONENTS_VERSION.jar \ -Djavadoc=eaaf_modules/eaaf_module_moa-sig/target/eaaf_module_moa-sig-$EAAF_COMPONENTS_VERSION-javadoc.jar \ -Dsources=eaaf_modules/eaaf_module_moa-sig/target/eaaf_module_moa-sig-$EAAF_COMPONENTS_VERSION-sources.jar ``` ## Compile & Test ``` mvn test ```