Skip to content
Open
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
14 changes: 7 additions & 7 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@
val VERSION = "1.2.19" // -SNAPSHOT marks WIP versions (snapshots are not CI published)

plugins {
id("com.gradleup.shadow") version "9.2.2" apply false
id("com.gradleup.shadow") version "9.3.1" apply false
id("io.papermc.paperweight.userdev") version "2.0.0-beta.19" apply false
}

val highestPaperDep = "1.21.11-pre4-R0.1-SNAPSHOT"
val highestPaperDep = "1.21.11-R0.1-SNAPSHOT"

// Testing server APIs (the earliest supported version, and the latest PaperMC version)
val oldestServerAPI = "net.techcable.tacospigot:server:1.8.8-R0.2-REDUCED-KC"
Expand All @@ -30,16 +30,16 @@ ext {
// the project may support newer versions, but we have not tested or compiled against them yet
set("highestPaperDep", highestPaperDep)
// NOTE: The standalone-utils module must support Java 17 since it's used in nms modules requiring Java 17
set("standaloneUtils", "com.kamikazejam.kamicommon:standalone-utils:5.0.0-alpha.32")
set("standaloneUtils", "com.kamikazejam.kamicommon:standalone-utils:5.0.0-alpha.36")
// Lombok Dependency
set("lombokDep", "org.projectlombok:lombok:1.18.42")
set("jetbrainsDep", "org.jetbrains:annotations:26.0.2")
set("jetbrainsDep", "org.jetbrains:annotations:26.1.0")
set("adventureDep", "com.kamikazejam.kamicommon:spigot-nms-text:1.0.5")
}
extra["commonDependencies"] = listOf(
"de.tr7zw:item-nbt-api:2.15.3",
"com.github.cryptomorin:XSeries:v13.5.1",
"com.github.fierioziy.particlenativeapi:ParticleNativeAPI-core:4.5.0"
"de.tr7zw:item-nbt-api:2.15.5",
"com.github.cryptomorin:XSeries:13.6.0",
"com.github.fierioziy.particlenativeapi:ParticleNativeAPI-core:4.5.1"
)

allprojects {
Expand Down
Binary file modified gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-9.0.0-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-9.3.1-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
Expand Down
5 changes: 1 addition & 4 deletions gradlew
100644 → 100755

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

187 changes: 93 additions & 94 deletions gradlew.bat

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion text/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ plugins {
val TEXT_VERSION = "1.0.5"
version = TEXT_VERSION

val adventureVersion = "4.25.0"
val adventureVersion = "4.26.1"
dependencies {
// Shade All Adventure APIs we need, used by older versions without native Adventure support
implementation("net.kyori:adventure-api:$adventureVersion")
Expand Down