Skip to content

tracedin/tracedin-sdk

Repository files navigation

Tracedin SDK for Java

GitHub Maven Central

Setup

Java Version

The current release of SDK Java supports Java 17+.

Add a dependency on the Tracedin Java SDK to your project

If you're using Maven, then edit your project's "pom.xml" and add this to the <dependencies> section:

<dependency>
    <groupId>io.github.tracedin</groupId>
    <artifactId>tracedin-sdk</artifactId>
    <version>0.0.4</version>
</dependency>

If you are using Gradle, then edit your project's "build.gradle" and add this to the dependencies section:

dependencies {
    // ...
    implementation 'io.github.tracedin:tracedin-sdk:0.0.4'
}

Usage

TODO