Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ org.jetbrains.dokka.experimental.gradle.pluginMode=V2Enabled
javaVersion=25
mcVersion=26.2
group=dev.slne.surf.api
version=3.39.1
version=3.39.2
relocationPrefix=dev.slne.surf.api.libs
snapshot=false
2 changes: 2 additions & 0 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@ glm = "0.9.9.1-15"
ksp-version = "2.3.9"
reactor-netty = "1.3.5"
bytebuddy = "1.18.8"
wyck = "3.+"

# Testing
junit = "5.14.4"
Expand Down Expand Up @@ -171,6 +172,7 @@ aide-reflection = { module = "tech.hiddenproject:aide-reflection", version.ref =
glm = { module = "io.github.kotlin-graphics:glm", version.ref = "glm" }
datafixerupper = { module = "com.mojang:datafixerupper", version.ref = "datafixerupper" }
luckperms = { module = "net.luckperms:api", version.ref = "luckperms" }
wyck = { module = "dev.wyck:wyck", version.ref = "wyck" }

auto-service-annotations = { module = "com.google.auto.service:auto-service-annotations", version.ref = "auto-service" }
auto-service = { module = "dev.zacsweers.autoservice:auto-service-ksp", version.ref = "auto-service-ksp" }
Expand Down
2 changes: 1 addition & 1 deletion surf-api-gradle-plugin/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ plugins {

group = groupId
version = buildString {
append("2.2.0")
append("2.2.1")
if (snapshot) append("-SNAPSHOT")
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ internal abstract class AbstractPaperSurfPlugin<E : AbstractPaperSurfExtension>(

init {
"me.devnatan.inventoryframework" relocatesTo "devnatan.inventoryframework"
"dev.wyck" relocatesTo "dev.wyck"
}

override fun Project.configure0() {
Expand Down
1 change: 1 addition & 0 deletions surf-api-paper/surf-api-paper-server/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,7 @@ tasks {
mergeServiceFiles()
val relocationPrefix: String by project
relocate("me.devnatan.inventoryframework", "$relocationPrefix.devnatan.inventoryframework")
relocate("dev.wyck", "$relocationPrefix.dev.wyck")
}
}

Expand Down
1 change: 1 addition & 0 deletions surf-api-paper/surf-api-paper/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ dependencies {
api(libs.scoreboard.library.api)
api(libs.commandapi.bukkit.kotlin)
compileOnlyApi(libs.mccoroutine.folia.api)
api(libs.wyck)

testImplementation(libs.mockbukkit)
testImplementation(libs.paper.api)
Expand Down