The documentation should read "Developers have to declare ..." instead of "Developers have to install ...".
See Maven POM Reference, Dependencies for how to declare the dependency in your project's POM (i.e. pom.xml
):
<project ...>
...
<dependencies>
...
<dependency>
<groupId>network.quant</groupId>
<artifactId>overledger-sdk-bundle</artifactId>
<version>1.0.0-alpha.2</version>
</dependency>
...
</dependencies>
...
<project>
At the next Maven build (or project update in your IDE) it will be downloaded from the Maven Central repository to your local repository (located in ~/.m2/repository
by default). From then on the dependency's classes can be used in your project's code.