AuthMeVelocity/common/build.gradle.kts
Adrian3d04 315f6b043b feat(paper): Implement Paper Debug
feat(velocity): improved PluginMessageListener
2022-08-06 03:30:48 +00:00

21 lines
554 B
Plaintext

plugins {
id("com.github.johnrengelman.shadow") version "7.1.2"
}
repositories {
maven("https://repo.alessiodp.com/releases/")
}
dependencies {
compileOnly("org.spongepowered:configurate-hocon:4.1.2")
compileOnly("org.slf4j:slf4j-api:1.7.36")
compileOnly("net.byteflux:libby-core:1.1.5")
compileOnly("net.kyori:adventure-api:4.11.0")
}
tasks {
shadowJar {
relocate("net.byteflux.libby", "me.adrianed.authmevelocity.libs.libby")
relocate("org.spongepowered", "me.adrianed.authmevelocity.libs.sponge")
}
}