-
-
Notifications
You must be signed in to change notification settings - Fork 1
Gradle Setup
TehBrian edited this page May 30, 2026
·
8 revisions
Mayi is published on https://repo.tehbrian.dev.
Replace [latest version] with the library's latest release.
repositories {
maven("https://repo.tehbrian.dev/releases/")
}
dependencies {
implementation("dev.tehbrian:mayi-paper:[latest version]")
}Replace [your plugin package] with your plugin's package.
plugins {
id("com.gradleup.shadow") version "9.4.2"
}
tasks.shadowJar {
relocate("dev.tehbrian.mayi", "[your plugin package].libs.mayi")
}