diff --git a/gradle.properties b/gradle.properties index 06832df4e..6dd67bc9b 100644 --- a/gradle.properties +++ b/gradle.properties @@ -7,6 +7,6 @@ org.jetbrains.dokka.experimental.gradle.pluginMode=V2Enabled javaVersion=25 mcVersion=26.1.1 group=dev.slne.surf.api -version=3.1.0 +version=3.1.1 relocationPrefix=dev.slne.surf.api.libs snapshot=false diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index 0cbc1223a..a9c495549 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -6,7 +6,7 @@ canvas-api = "1.21.11-R0.1-SNAPSHOT" # Kolin kotlinVersion = "2.3.20" kotlinxCoroutines = "1.10.2" -kotlinx-serialization = "1.10.0" +kotlinx-serialization = "1.11.0" # Packet Events packetevents = "2.11.2" @@ -19,7 +19,7 @@ commandapi = "11.2.0" luckperms = "5.4" # Scoreboard Library -scoreboard-library = "2.7.3" +scoreboard-library = "2.7.4" # Adventure adventure-api = "4.26.1" @@ -67,7 +67,7 @@ bytebuddy = "1.18.8" maven-repo-auth = "3.0.4" shadow-gradle-plugin = "9.4.1" run-paper-gradle-plugin = "3.0.2" -dokka = "2.1.0" +dokka = "2.2.0" [libraries] # Paper diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties index dbc3ce4a0..c61a118f7 100644 --- a/gradle/wrapper/gradle-wrapper.properties +++ b/gradle/wrapper/gradle-wrapper.properties @@ -1,6 +1,6 @@ distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-9.4.0-bin.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-9.4.1-bin.zip networkTimeout=10000 validateDistributionUrl=true zipStoreBase=GRADLE_USER_HOME diff --git a/gradlew b/gradlew index 0262dcbd5..739907dfd 100755 --- a/gradlew +++ b/gradlew @@ -57,7 +57,7 @@ # Darwin, MinGW, and NonStop. # # (3) This script is generated from the Groovy template -# https://github.com/gradle/gradle/blob/b631911858264c0b6e4d6603d677ff5218766cee/platforms/jvm/plugins-application/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt +# https://github.com/gradle/gradle/blob/2d6327017519d23b96af35865dc997fcb544fb40/platforms/jvm/plugins-application/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt # within the Gradle project. # # You can find Gradle at https://github.com/gradle/gradle/. diff --git a/surf-api-gradle-plugin/build.gradle.kts b/surf-api-gradle-plugin/build.gradle.kts index 65ed79d42..837bbe933 100644 --- a/surf-api-gradle-plugin/build.gradle.kts +++ b/surf-api-gradle-plugin/build.gradle.kts @@ -44,7 +44,7 @@ dependencies { compileOnly(gradleApi()) pluginDependencies.forEach { dep -> api(dep) } - implementation("com.palantir.javapoet:javapoet:0.12.0") + implementation("com.palantir.javapoet:javapoet:0.14.0") implementation(libs.bundles.kotlin.serialization) }