Skip to content
Daniel Abu Dawoud edited this page Oct 24, 2024 · 7 revisions

Importing the API using JitPack.

Using Gradle:

Adding JitPack

repositories {
    mavenCentral()
    maven { url 'https://jitpack.io' }
}

Adding the dependency

dependencies {
    implementation 'com.github.SMP-Remakers:BlissGemsRemake:VERSION'
}

Make sure to replace VERSION with the latest version in the releases (use the tag)

Using Maven:

Adding JitPack

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

Adding the dependency

<dependency>
    <groupId>com.github.SMP-Remakers</groupId>
    <artifactId>BlissGemsRemake</artifactId>
    <version>VERSION</version>
</dependency>

Make sure to replace VERSION with the latest version in the releases (use the tag)

Using something else? go to https://jitpack.io/#SMP-Remakers/BlissGemsRemake and scroll down.