Boosters/velocity/build.gradle.kts

43 lines
1.2 KiB
Plaintext
Raw Normal View History

2021-09-06 17:35:04 +00:00
plugins {
`maven-publish`
2024-07-21 16:48:28 +00:00
id("io.github.goooler.shadow")
2021-09-06 17:35:04 +00:00
}
dependencies {
// API
2022-09-09 17:56:14 +00:00
implementation(project(":boosters-api")) {
exclude("com.alttd:Galaxy-API:1.19.2-R0.1-SNAPSHOT")
}
2021-09-06 17:35:04 +00:00
// Velocity
2022-09-09 18:47:53 +00:00
compileOnly("com.velocitypowered:velocity-api:3.1.2-SNAPSHOT") // Velocity
2022-09-09 17:56:14 +00:00
annotationProcessor("com.velocitypowered:velocity-api:3.1.2-SNAPSHOT")
2021-11-04 16:57:55 +00:00
// DiscordLink
2022-09-09 17:56:14 +00:00
compileOnly("com.alttd.proxydiscordlink:ProxyDiscordLink:1.0.0-BETA-SNAPSHOT") {
exclude("net.kyori")
}
2021-12-25 17:05:07 +00:00
implementation("mysql:mysql-connector-java:8.0.27") // mysql
implementation("org.spongepowered", "configurate-yaml", "4.1.2")
2022-09-09 17:56:14 +00:00
// implementation("net.kyori", "adventure-text-minimessage", "4.1.0-SNAPSHOT") {
// exclude("net.kyori")
// exclude("net.kyori.examination")
// }
//Luckperms
compileOnly("net.luckperms:api:5.3")
2021-12-25 17:05:07 +00:00
}
tasks {
shadowJar {
archiveFileName.set("${project.name}-${project.version}.jar")
listOf(
2022-09-09 17:56:14 +00:00
// "net.kyori.adventure.text.minimessage",
2021-12-25 17:05:07 +00:00
"org.spongepowered.configurate"
).forEach { relocate(it, "${rootProject.name}.lib.$it") }
}
build {
dependsOn(shadowJar)
}
2021-09-06 17:35:04 +00:00
}