Update Download | Install authored by Christian Reuschling's avatar Christian Reuschling
......@@ -2,3 +2,53 @@
---
#### Standalone GenIe
* [Download the bundle](https://git.opendfki.de/reuschling/genie/-/packages) or build it on your own (see below)
* Unpack the bundle to a directory of your choice
* Make your configurations to the [config file]()
* Start the executable `./genIe.sh` or `.\bin\genIe.bat`
---
#### GenIe as library: Add GenIe to your maven project
GenIe is offered in our own repository. Add following entries to your pom.xml:
<repositories>
<repository>
<id>dfki-km-libs-releases</id>
<url>http://www.dfki.uni-kl.de/artifactory/libs-releases</url>
</repository>
<repository>
<id>dfki-km-libs-snapshots</id>
<url>http://www.dfki.uni-kl.de/artifactory/libs-snapshots</url>
</repository>
</repositories>
and in the \<dependencies\> section
<dependency>
<groupId>dfki.sds.genie</groupId>
<artifactId>genie</artifactId>
<version>CURRENT_VERSION</version>
</dependency>
Find the current version in the [project pom.xml](https://git.opendfki.de/reuschling/genie/-/blob/main/pom.xml) or in the name of the [newest bundle](https://git.opendfki.de/reuschling/genie/-/packages).
---
#### Build the bundle with all libraries and executable starter scripts
* Be sure that you have maven installed
* Checkout our sources
* Switch to the project's main directory
* Invoke `mvn -Dmaven.test.skip=true clean package appassembler:assemble assembly:single`
* You find the bundle as .zip and .tar.gz in the target folder
This is also documented inside [how2build.txt](https://git.opendfki.de/reuschling/genie/-/blob/master/how2build.txt).
---
**As a next step, check out our [documentation](documentation) section.**
\ No newline at end of file