Boosters/velocity/build.gradle.kts

39 lines
997 B
Plaintext
Raw Permalink 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")) {
2025-06-28 02:05:44 +00:00
exclude("com.alttd.cosmos:cosmos-api:1.21.6-R0.1-SNAPSHOT")
2022-09-09 17:56:14 +00:00
}
2021-09-06 17:35:04 +00:00
// Velocity
2025-06-28 02:05:44 +00:00
compileOnly("com.velocitypowered:velocity-api:3.4.0-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
2025-06-28 02:05:44 +00:00
implementation("mysql:mysql-connector-java:8.0.33") // mysql
2021-12-25 17:05:07 +00:00
implementation("org.spongepowered", "configurate-yaml", "4.1.2")
//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(
"org.spongepowered.configurate"
).forEach { relocate(it, "${rootProject.name}.lib.$it") }
}
build {
dependsOn(shadowJar)
}
2025-06-28 02:05:44 +00:00
}