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 @@ -12,9 +12,9 @@ jobs:
fail-fast: false
steps:
- name: Checkout
uses: actions/checkout@v4.0.0
uses: actions/checkout@v4.1.0
- name: 'Set up JDK ${{ matrix.java }}'
uses: actions/setup-java@v3.12.0
uses: actions/setup-java@v3.13.0
with:
distribution: adopt
java-version: '${{ matrix.java }}'
Expand Down
8 changes: 4 additions & 4 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ plugins {
`java-library`
id("com.github.johnrengelman.shadow") version "8.1.1"
id("net.minecrell.plugin-yml.bukkit") version "0.6.0"
id("xyz.jpenilla.run-paper") version "2.1.0"
id("xyz.jpenilla.run-paper") version "2.2.0"
}

subprojects {
Expand Down Expand Up @@ -57,7 +57,7 @@ project(":chat-formatter") {
compileOnly("org.spigotmc:spigot-api:1.19.3-R0.1-SNAPSHOT")

// Kyori Adventure & MiniMessage
implementation("net.kyori:adventure-platform-bukkit:4.3.0")
implementation("net.kyori:adventure-platform-bukkit:4.3.1")
implementation("net.kyori:adventure-text-minimessage:4.14.0")

// LiteCommands & CDN
Expand All @@ -68,7 +68,7 @@ project(":chat-formatter") {
implementation("org.bstats:bstats-bukkit:3.0.2")

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

// GitCheck
Expand Down Expand Up @@ -164,7 +164,7 @@ project(":chat-formatter-test") {
dependencies {
testImplementation(project(":chat-formatter"))

testImplementation("net.kyori:adventure-platform-bukkit:4.3.0")
testImplementation("net.kyori:adventure-platform-bukkit:4.3.1")
testImplementation("net.kyori:adventure-text-minimessage:4.14.0")
testImplementation("net.dzikoysk:cdn:1.14.4")
testImplementation("org.junit.jupiter:junit-jupiter-api:5.10.0")
Expand Down