Skip to content

Latest commit

 

History

History
57 lines (43 loc) · 1.39 KB

File metadata and controls

57 lines (43 loc) · 1.39 KB

KristLib

Java wrapper for the Krist API

github jitpack maven java

Adding to your project

Maven with JitPack

Add the repository:

<repositories>
    <repository>
        <id>jitpack.io</id>
        <url>https://jitpack.io</url>
    </repository>
</repositories>

Add the dependency:

<dependency>
    <groupId>com.github.TechTastic</groupId>
    <artifactId>KristLib</artifactId>
    <version>master-SNAPSHOT</version>
</dependency>

Gradle with JitPack

Add the repository:

dependencyResolutionManagement {
    repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
    repositories {
        mavenCentral()
        maven { url 'https://jitpack.io' }
    }
}

Add the dependency:

dependencies {
    implementation 'com.github.TechTastic:KristLib:master-SNAPSHOT'
}