Skip to content

Importing

Include JitPack in your maven build file.

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

Add the dependency.

<dependency>
    <groupId>dev.7ori</groupId>
    <artifactId>Wraith</artifactId>
    <version>4.0.0</version>
</dependency>

Add JitPack to your root build.gradle at the end of repositories.

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

Add the dependency.

dependencies {
    implementation 'dev.7ori:Wraith:4.0.0'
}

Add JitPack to your root build.gradle.kts at the end of repositories.

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

Add the dependency.

dependencies {
    implementation("dev.7ori:Wraith:4.0.0")
}

Wraith and its sources can be downloaded from GitHub. Image title