Skip to content

Step 1. Add dependency in Gradle

toxicity188 edited this page Sep 10, 2023 · 1 revision

First, you have to add jitpack.io in your repo.

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

Second, you have to add this dependency.

dependencies {
    compileOnly "com.github.toxicity188:QuestAdder:master-SNAPSHOT"
}

And reload your Gradle.
111
Done!

Clone this wiki locally