aboutsummaryrefslogtreecommitdiff
path: root/readme.md
diff options
context:
space:
mode:
Diffstat (limited to 'readme.md')
-rw-r--r--readme.md16
1 files changed, 16 insertions, 0 deletions
diff --git a/readme.md b/readme.md
index 3bcb3d0..497088e 100644
--- a/readme.md
+++ b/readme.md
@@ -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
```