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
4 changes: 2 additions & 2 deletions .github/workflows/gradle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,11 +32,11 @@ jobs:
- name: Make gradlew executable
run: chmod +x gradlew
- name: Build with Gradle
uses: gradle/gradle-build-action@fe59895742b4f984530980e4f693943577526b61
uses: gradle/gradle-build-action@4c39dd82cd5e1ec7c6fa0173bb41b4b6bb3b86ff
with:
arguments: shadowAll
- name: Upload a ChatFormatter Artifact
uses: actions/upload-artifact@v4.3.1
uses: actions/upload-artifact@v4.3.3
with:
name: 'Successfully build ChatFormatter'
path: build/libs/ChatFormatter v*.jar
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import java.util.jar.JarOutputStream
plugins{
id("eternalcode.java")
id("com.github.johnrengelman.shadow")
id("xyz.jpenilla.run-paper") version "2.2.3"
id("xyz.jpenilla.run-paper") version "2.3.0"
}

tasks.create("shadowAll") {
Expand Down
2 changes: 1 addition & 1 deletion buildSrc/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ repositories {
}

dependencies {
implementation("org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.9.23")
implementation("org.jetbrains.kotlin:kotlin-stdlib-jdk8:2.0.0")
implementation("com.github.johnrengelman:shadow:8.1.1")
implementation("net.minecrell:plugin-yml:0.6.0")
}
8 changes: 4 additions & 4 deletions chatformatter-core/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ dependencies {
testImplementation("org.spigotmc:spigot-api:$spigotApiVersion")

// Kyori Adventure & MiniMessage
val adventureVersion = "4.3.2"
val miniMessageVersion = "4.16.0"
val adventureVersion = "4.3.3"
val miniMessageVersion = "4.17.0"
implementation("net.kyori:adventure-platform-bukkit:$adventureVersion")
implementation("net.kyori:adventure-text-minimessage:$miniMessageVersion")
testImplementation("net.kyori:adventure-platform-bukkit:$adventureVersion")
Expand All @@ -26,7 +26,7 @@ dependencies {
implementation("org.bstats:bstats-bukkit:3.0.2")

// PlaceholderAPI & Vault
compileOnly("me.clip:placeholderapi:2.11.5")
compileOnly("me.clip:placeholderapi:2.11.6")
compileOnly("com.github.MilkBowl:VaultAPI:1.7.1")

// GitCheck
Expand All @@ -38,7 +38,7 @@ dependencies {
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.10.2")
testImplementation("org.mockito:mockito-core:5.12.0")
testImplementation("org.mockito:mockito-junit-jupiter:5.12.0")
testImplementation("me.clip:placeholderapi:2.11.5")
testImplementation("me.clip:placeholderapi:2.11.6")
testImplementation("org.assertj:assertj-core:3.26.0")
}

Expand Down
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-8.7-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.8-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
Expand Down
2 changes: 1 addition & 1 deletion gradlew
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
# Darwin, MinGW, and NonStop.
#
# (3) This script is generated from the Groovy template
# https://github.com/gradle/gradle/blob/HEAD/subprojects/plugins/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt
# https://github.com/gradle/gradle/blob/HEAD/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/.
Expand Down