Java SDK Installation

Requirements

  • JDK 11 or later is required

Install the SDK

Add the SDK to your project using your build tool.

Gradle

repositories {

    maven { url 'https://jitpack.io' }

}

dependencies {

    implementation 'com.github.newline53:newline-java-sdk:main-SNAPSHOT'

}

Maven

<repositories>

    <repository>

        <id>jitpack.io</id>

        <url>https://jitpack.io</url>

    </repository>

</repositories>

<dependency>

    <groupId>com.github.newline53</groupId>

    <artifactId>newline-java-sdk</artifactId>

    <version>main-SNAPSHOT</version>

</dependency>

Build from Source (Optional)

After cloning the repository, you can build the SDK artifact locally.

Build the SDK

macOS/Linux

./gradlew build

Windows

gradlew.bat build

Publish to Local Maven Repository (Optional)

You can publish the SDK artifact to your local Maven repository.

macOS/Linux

./gradlew publishToMavenLocal -Pskip.signing

Windows

gradlew.bat publishToMavenLocal -Pskip.signing

GitHub Repository

The SDK source code and release history are available on GitHub: https://github.info53.com/fitb-embeddedapi/newline-java-sdk/tree/develop