Maven
Follow the steps below to include the NKN Java SDK libraries in your Maven project (pom.xml)
#
Add repositoryNKN Java SDK uses jitpack resolver. Include the jitpack repository to the list of repositories in the pom.xml file.
<repositories> <repository> <id>jitpack.io</id> <url>https://jitpack.io</url> </repository></repositories>
#
Add dependencyAdd the NKN Java SDK dependecy to pom.xml.
<dependency> <groupId>com.github.nknorg</groupId> <artifactId>nkn-java-sdk</artifactId> <version>Tag</version></dependency>
info
When requested for the first time, jitpack will checlout the target repository, build and serve the artifacts on the fly. More information about jitpack can be found on their documentation site.