Java SDK

Official Java SDK for using the Moov API

SDK Installation

Getting started

JDK 11 or later is required.

The samples below show how a published SDK artifact is used:

Gradle:

1
implementation 'io.moov:sdk:0.8.13'

Maven:

1
2
3
4
5
<dependency>
    <groupId>io.moov</groupId>
    <artifactId>sdk</artifactId>
    <version>0.8.13</version>
</dependency>

How to build

After cloning the git repository to your file system you can build the SDK artifact from source to the build directory by running ./gradlew build on *nix systems or gradlew.bat on Windows systems.

If you wish to build from source and publish the SDK artifact to your local Maven repository (on your filesystem) then use the following command (after cloning the git repo locally):

On *nix:

1
./gradlew publishToMavenLocal -Pskip.signing

On Windows:

1
gradlew.bat publishToMavenLocal -Pskip.signing