Skip to content

Commit 9a7af3c

Browse files
Update all dependencies
1 parent 7e5e4b1 commit 9a7af3c

File tree

6 files changed

+11
-11
lines changed

6 files changed

+11
-11
lines changed

.github/workflows/gradle.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ jobs:
1616
fail-fast: false
1717
steps:
1818
- name: Checkout
19-
uses: actions/checkout@v4.2.2
19+
uses: actions/checkout@v5.0.0
2020
- name: 'Set up JDK ${{ matrix.java }}'
21-
uses: actions/setup-java@v4.5.0
21+
uses: actions/setup-java@v5.0.0
2222
with:
2323
distribution: adopt
2424
java-version: '${{ matrix.java }}'

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 = "12.0.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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ plugins {
44

55
dependencies {
66
testImplementation("org.codehaus.groovy:groovy-all:3.0.23")
7-
testImplementation(platform("org.junit:junit-bom:5.11.3"))
7+
testImplementation(platform("org.junit:junit-bom:6.0.0"))
88
testImplementation("org.junit.jupiter:junit-jupiter")
99
testImplementation("org.mockito:mockito-core:5.14.2")
1010
}

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-9.1.0-bin.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME

lobbyheads-api/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ plugins {
66

77
dependencies {
88
api("org.spigotmc:spigot-api:1.20.2-R0.1-SNAPSHOT")
9-
api("org.jetbrains:annotations:24.1.0")
9+
api("org.jetbrains:annotations:26.0.2-1")
1010
}
1111

1212

lobbyheads-core/build.gradle.kts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ 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"
9-
id("xyz.jpenilla.run-paper") version "2.3.1"
8+
id("com.gradleup.shadow") version "9.2.2"
9+
id("xyz.jpenilla.run-paper") version "3.0.1"
1010
}
1111

1212
dependencies {
@@ -23,7 +23,7 @@ dependencies {
2323
implementation("net.kyori:adventure-text-minimessage:4.17.0")
2424

2525
// Rollczi's skullapi
26-
implementation("dev.rollczi:liteskullapi:1.3.0")
26+
implementation("dev.rollczi:liteskullapi:2.0.0")
2727

2828
// eternalcode commons
2929
implementation("com.eternalcode:eternalcode-commons-adventure:1.1.4")
@@ -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:4.3.2")
4040

4141
// PlaceholderAPI, if anyone wants to parse placeholders in the head's name
4242
compileOnly("me.clip:placeholderapi:2.11.6")
@@ -49,7 +49,7 @@ dependencies {
4949

5050
// tests setup
5151
testImplementation("org.codehaus.groovy:groovy-all:3.0.23")
52-
testImplementation(platform("org.junit:junit-bom:5.11.3"))
52+
testImplementation(platform("org.junit:junit-bom:6.0.0"))
5353
testImplementation("org.junit.jupiter:junit-jupiter")
5454
testImplementation("org.mockito:mockito-core:5.14.2")
5555
}

0 commit comments

Comments
 (0)