Skip to content

Commit d83628a

Browse files
Update all dependencies
1 parent 7e5e4b1 commit d83628a

File tree

8 files changed

+23
-24
lines changed

8 files changed

+23
-24
lines changed

.github/workflows/gradle.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,12 @@ jobs:
1818
- name: Checkout
1919
uses: actions/checkout@v4.2.2
2020
- name: 'Set up JDK ${{ matrix.java }}'
21-
uses: actions/setup-java@v4.5.0
21+
uses: actions/setup-java@v4.7.1
2222
with:
2323
distribution: adopt
2424
java-version: '${{ matrix.java }}'
2525
- name: Cache Gradle
26-
uses: actions/cache@v4.1.2
26+
uses: actions/cache@v4.2.3
2727
with:
2828
path: ~/.gradle/caches
2929
key: >-
@@ -35,7 +35,7 @@ jobs:
3535
- name: Build the Jar
3636
run: './gradlew clean shadowJar'
3737
- name: Upload a Build Artifact
38-
uses: actions/upload-artifact@v4.4.3
38+
uses: actions/upload-artifact@v4.6.2
3939
with:
4040
name: 'LobbyHeads'
4141
path: build/libs/LobbyHeads*.jar

buildSrc/src/main/kotlin/lobbyheads-checkstyle.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ plugins {
33
}
44

55
checkstyle {
6-
toolVersion = "10.20.1"
6+
toolVersion = "10.25.0"
77

88
configFile = file("${rootDir}/checkstyle/checkstyle.xml")
99
configProperties["checkstyle.suppressions.file"] = "${rootDir}/checkstyle/suppressions.xml"

buildSrc/src/main/kotlin/lobbyheads-java-unit-test.gradle.kts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@ plugins {
33
}
44

55
dependencies {
6-
testImplementation("org.codehaus.groovy:groovy-all:3.0.23")
7-
testImplementation(platform("org.junit:junit-bom:5.11.3"))
6+
testImplementation("org.codehaus.groovy:groovy-all:3.0.25")
7+
testImplementation(platform("org.junit:junit-bom:5.13.1"))
88
testImplementation("org.junit.jupiter:junit-jupiter")
9-
testImplementation("org.mockito:mockito-core:5.14.2")
9+
testImplementation("org.mockito:mockito-core:5.18.0")
1010
}
1111

1212
tasks.getByName<Test>("test") {

gradle/wrapper/gradle-wrapper.jar

181 Bytes
Binary file not shown.

gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.10.2-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.14.2-bin.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME

gradlew

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -86,8 +86,7 @@ done
8686
# shellcheck disable=SC2034
8787
APP_BASE_NAME=${0##*/}
8888
# Discard cd standard output in case $CDPATH is set (https://github.com/gradle/gradle/issues/25036)
89-
APP_HOME=$( cd -P "${APP_HOME:-./}" > /dev/null && printf '%s
90-
' "$PWD" ) || exit
89+
APP_HOME=$( cd -P "${APP_HOME:-./}" > /dev/null && printf '%s\n' "$PWD" ) || exit
9190

9291
# Use the maximum available, or set MAX_FD != -1 to use that value.
9392
MAX_FD=maximum
@@ -115,7 +114,7 @@ case "$( uname )" in #(
115114
NONSTOP* ) nonstop=true ;;
116115
esac
117116

118-
CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar
117+
CLASSPATH="\\\"\\\""
119118

120119

121120
# Determine the Java command to use to start the JVM.
@@ -206,15 +205,15 @@ fi
206205
DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"'
207206

208207
# Collect all arguments for the java command:
209-
# * DEFAULT_JVM_OPTS, JAVA_OPTS, JAVA_OPTS, and optsEnvironmentVar are not allowed to contain shell fragments,
208+
# * DEFAULT_JVM_OPTS, JAVA_OPTS, and optsEnvironmentVar are not allowed to contain shell fragments,
210209
# and any embedded shellness will be escaped.
211210
# * For example: A user cannot expect ${Hostname} to be expanded, as it is an environment variable and will be
212211
# treated as '${Hostname}' itself on the command line.
213212

214213
set -- \
215214
"-Dorg.gradle.appname=$APP_BASE_NAME" \
216215
-classpath "$CLASSPATH" \
217-
org.gradle.wrapper.GradleWrapperMain \
216+
-jar "$APP_HOME/gradle/wrapper/gradle-wrapper.jar" \
218217
"$@"
219218

220219
# Stop when "xargs" is not available.

gradlew.bat

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,11 +70,11 @@ goto fail
7070
:execute
7171
@rem Setup the command line
7272

73-
set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar
73+
set CLASSPATH=
7474

7575

7676
@rem Execute Gradle
77-
"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %*
77+
"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" -jar "%APP_HOME%\gradle\wrapper\gradle-wrapper.jar" %*
7878

7979
:end
8080
@rem End local scope for the variables with windows NT shell

lobbyheads-core/build.gradle.kts

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -5,28 +5,28 @@ plugins {
55
`lobbyheads-checkstyle`
66

77
id("net.minecrell.plugin-yml.bukkit") version "0.6.0"
8-
id("com.gradleup.shadow") version "8.3.5"
8+
id("com.gradleup.shadow") version "8.3.6"
99
id("xyz.jpenilla.run-paper") version "2.3.1"
1010
}
1111

1212
dependencies {
1313
// okaeri configs
14-
val okaeriConfigsVersion = "5.0.5"
14+
val okaeriConfigsVersion = "5.0.9"
1515
implementation("eu.okaeri:okaeri-configs-yaml-snakeyaml:${okaeriConfigsVersion}")
1616
implementation("eu.okaeri:okaeri-configs-serdes-commons:${okaeriConfigsVersion}")
1717

1818
// api
1919
api(project(":lobbyheads-api"))
2020

2121
// a cool library, kyori
22-
implementation("net.kyori:adventure-platform-bukkit:4.3.4")
23-
implementation("net.kyori:adventure-text-minimessage:4.17.0")
22+
implementation("net.kyori:adventure-platform-bukkit:4.4.0")
23+
implementation("net.kyori:adventure-text-minimessage:4.23.0")
2424

2525
// Rollczi's skullapi
2626
implementation("dev.rollczi:liteskullapi:1.3.0")
2727

2828
// eternalcode commons
29-
implementation("com.eternalcode:eternalcode-commons-adventure:1.1.4")
29+
implementation("com.eternalcode:eternalcode-commons-adventure:1.1.6")
3030

3131
// spigot-api
3232
compileOnly("org.spigotmc:spigot-api:1.20.2-R0.1-SNAPSHOT")
@@ -36,7 +36,7 @@ dependencies {
3636
compileOnly("com.mojang:authlib:5.0.47")
3737

3838
// HoloEasy based on top of the protocolib
39-
implementation("com.github.unldenis:holoeasy:3.0.1")
39+
implementation("com.github.unldenis:holoeasy:3.4.4")
4040

4141
// PlaceholderAPI, if anyone wants to parse placeholders in the head's name
4242
compileOnly("me.clip:placeholderapi:2.11.6")
@@ -48,10 +48,10 @@ dependencies {
4848
implementation("com.eternalcode:gitcheck:1.0.0")
4949

5050
// tests setup
51-
testImplementation("org.codehaus.groovy:groovy-all:3.0.23")
52-
testImplementation(platform("org.junit:junit-bom:5.11.3"))
51+
testImplementation("org.codehaus.groovy:groovy-all:3.0.25")
52+
testImplementation(platform("org.junit:junit-bom:5.13.1"))
5353
testImplementation("org.junit.jupiter:junit-jupiter")
54-
testImplementation("org.mockito:mockito-core:5.14.2")
54+
testImplementation("org.mockito:mockito-core:5.18.0")
5555
}
5656

5757
java {

0 commit comments

Comments
 (0)