Skip to content

Commit

Permalink
update dependencies (remove support for spigot for now)
Browse files Browse the repository at this point in the history
  • Loading branch information
granny committed Feb 2, 2025
1 parent 2a88dc7 commit 6896ca8
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 11 deletions.
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ modrinth {
// rootProject.layout.buildDirectory.file("libs/${rootProject.name}-${project.version}-sources.jar").get()
//])
gameVersions.addAll(listOf(libs.versions.minecraft.get()))
loaders.addAll(listOf("bukkit", "fabric", /*"forge",*/ "paper", "purpur", "quilt", "spigot", "folia"))
loaders.addAll(listOf(/*"bukkit",*/ "fabric", /*"forge",*/ "paper", "purpur", "quilt", /*"spigot",*/ "folia"))
changelog = System.getenv("COMMIT_MESSAGE")
dependencies {
required.project("fabric-api")
Expand Down
10 changes: 3 additions & 7 deletions bukkit/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -41,12 +41,6 @@ dependencies {
}

tasks {
reobfJar {
dependsOn(shadowJar)

outputJar.set(jar.get().archiveFile)
}

// needed for below jank
compileJava {
dependsOn(":core:jar")
Expand All @@ -59,10 +53,12 @@ tasks {
manifest {
from(project(":core").tasks.named<Jar>("shadowJar").get().manifest)
}

archiveClassifier.set("")
}

build {
dependsOn(reobfJar)
dependsOn(shadowJar)
}

processResources {
Expand Down
6 changes: 3 additions & 3 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,12 @@ fabricLoom="1.9-SNAPSHOT"
#forgeLoader="[48,)"

minotaur="2.+" # https://github.com/modrinth/minotaur
paperweight="2.0.0-beta.8" # https://github.com/PaperMC/Paperweight
paperweight="2.0.0-beta.14" # https://github.com/PaperMC/Paperweight
indra-git="3.1.3" # https://github.com/KyoriPowered/indra
shadowJar="8.3.5" # https://github.com/GradleUp/shadow

adventure="4.18.0-SNAPSHOT"
adventureBukkit="4.3.5-SNAPSHOT" # https://github.com/KyoriPowered/adventure-platform
adventure="4.18.0" # https://github.com/KyoriPowered/adventure
adventureBukkit="4.3.4" # https://github.com/KyoriPowered/adventure-platform
adventureFabric="6.1.1-SNAPSHOT" # https://github.com/KyoriPowered/adventure-platform-fabric

cloud="2.0.0" # https://github.com/incendo/cloud
Expand Down

0 comments on commit 6896ca8

Please sign in to comment.