Update to 1.21.6 using cosmos

This commit is contained in:
2025-06-28 04:05:44 +02:00
parent 948efe14fc
commit d76dd403fb
11 changed files with 219 additions and 151 deletions
+4 -9
View File
@@ -6,22 +6,18 @@ plugins {
dependencies {
// API
implementation(project(":boosters-api")) {
exclude("com.alttd:Galaxy-API:1.19.2-R0.1-SNAPSHOT")
exclude("com.alttd.cosmos:cosmos-api:1.21.6-R0.1-SNAPSHOT")
}
// Velocity
compileOnly("com.velocitypowered:velocity-api:3.1.2-SNAPSHOT") // Velocity
compileOnly("com.velocitypowered:velocity-api:3.4.0-SNAPSHOT") // Velocity
annotationProcessor("com.velocitypowered:velocity-api:3.1.2-SNAPSHOT")
// DiscordLink
compileOnly("com.alttd.proxydiscordlink:ProxyDiscordLink:1.0.0-BETA-SNAPSHOT") {
exclude("net.kyori")
}
implementation("mysql:mysql-connector-java:8.0.27") // mysql
implementation("mysql:mysql-connector-java:8.0.33") // mysql
implementation("org.spongepowered", "configurate-yaml", "4.1.2")
// implementation("net.kyori", "adventure-text-minimessage", "4.1.0-SNAPSHOT") {
// exclude("net.kyori")
// exclude("net.kyori.examination")
// }
//Luckperms
compileOnly("net.luckperms:api:5.3")
}
@@ -31,7 +27,6 @@ tasks {
shadowJar {
archiveFileName.set("${project.name}-${project.version}.jar")
listOf(
// "net.kyori.adventure.text.minimessage",
"org.spongepowered.configurate"
).forEach { relocate(it, "${rootProject.name}.lib.$it") }
}
@@ -40,4 +35,4 @@ tasks {
dependsOn(shadowJar)
}
}
}