diff options
Diffstat (limited to 'readme.md')
-rw-r--r-- | readme.md | 16 |
1 files changed, 16 insertions, 0 deletions
@@ -6,6 +6,22 @@ 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 ``` |