Skip to content
Open
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
2 changes: 1 addition & 1 deletion .github/workflows/gradle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ jobs:
file: "**/build/reports/jacoco/**/*.xml"

- name: Publish Unit Test Results
uses: EnricoMi/publish-unit-test-result-action@v1.24
uses: EnricoMi/publish-unit-test-result-action@v1.40
if: always()
with:
files: "**/build/test-results/**/*.xml"
Expand Down
20 changes: 10 additions & 10 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ buildscript {
}

plugins {
id 'com.github.johnrengelman.shadow' version '7.1.0' apply false
id 'kr.entree.spigradle' version '2.2.4' apply false
id 'io.freefair.lombok' version '6.3.0' apply false
id 'com.github.johnrengelman.shadow' version '7.1.2' apply false
id 'kr.entree.spigradle' version '2.5.0' apply false
id 'io.freefair.lombok' version '6.6.3' apply false
id 'org.cadixdev.licenser' version '0.6.1' apply false
}

Expand Down Expand Up @@ -52,18 +52,18 @@ subprojects {
}

dependencies {
api 'net.kyori:adventure-api:4.9.3'
api 'net.kyori:adventure-api:4.26.1'

implementation 'org.jetbrains:annotations:22.0.0'

// Test dependencies
testImplementation 'org.junit.jupiter:junit-jupiter:5.8.1'
testImplementation 'org.mockito:mockito-core:4.0.0'
testImplementation 'org.assertj:assertj-core:3.21.0'
testImplementation 'org.junit.jupiter:junit-jupiter:5.14.2'
testImplementation 'org.mockito:mockito-core:4.11.0'
testImplementation 'org.assertj:assertj-core:3.27.7'

testFixturesImplementation 'org.mockito:mockito-core:4.0.0'
testFixturesImplementation 'org.assertj:assertj-core:3.21.0'
testFixturesImplementation 'org.apache.commons:commons-lang3:3.12.0'
testFixturesImplementation 'org.mockito:mockito-core:4.11.0'
testFixturesImplementation 'org.assertj:assertj-core:3.27.7'
testFixturesImplementation 'org.apache.commons:commons-lang3:3.20.0'
}

test {
Expand Down
2 changes: 1 addition & 1 deletion gradle/jacoco.gradle
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
jacoco { toolVersion = "0.8.7" }
jacoco { toolVersion = "0.8.14" }

jacocoTestReport {
reports {
Expand Down
Binary file modified gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
3 changes: 2 additions & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-7.3-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-7.6.6-all.zip
networkTimeout=10000
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
28 changes: 19 additions & 9 deletions gradlew

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

181 changes: 92 additions & 89 deletions gradlew.bat

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

22 changes: 11 additions & 11 deletions platform/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ allprojects {
testFixturesImplementation(testFixtures(project(':api')))
testFixturesImplementation(testFixtures(project(':core')))

testFixturesImplementation 'org.spongepowered:configurate-core:4.1.2'
testFixturesImplementation 'org.spongepowered:configurate-core:4.2.0'
}
}

Expand All @@ -22,19 +22,19 @@ subprojects {
}

dependencies {
implementation 'cloud.commandframework:cloud-core:1.6.1'
implementation 'cloud.commandframework:cloud-annotations:1.6.1'
implementation 'cloud.commandframework:cloud-core:1.8.4'
implementation 'cloud.commandframework:cloud-annotations:1.8.4'

implementation 'net.kyori:adventure-platform-api:4.0.1'
implementation 'net.kyori:adventure-text-minimessage:4.2.0-SNAPSHOT'
implementation 'net.kyori:adventure-platform-api:4.4.1'
implementation 'net.kyori:adventure-text-minimessage:4.26.1'

implementation 'org.spongepowered:configurate-core:4.1.2'
implementation 'org.spongepowered:configurate-yaml:4.1.2'
implementation 'org.spongepowered:configurate-xml:4.1.2'
implementation 'org.spongepowered:configurate-hocon:4.1.2'
implementation 'org.spongepowered:configurate-gson:4.1.2'
implementation 'org.spongepowered:configurate-core:4.2.0'
implementation 'org.spongepowered:configurate-yaml:4.2.0'
implementation 'org.spongepowered:configurate-xml:4.2.0'
implementation 'org.spongepowered:configurate-hocon:4.2.0'
implementation 'org.spongepowered:configurate-gson:4.2.0'

implementation 'com.google.guava:guava:21.0'

testFixturesImplementation 'cloud.commandframework:cloud-core:1.6.1'
testFixturesImplementation 'cloud.commandframework:cloud-core:1.8.4'
}
8 changes: 4 additions & 4 deletions platform/bukkit/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,11 @@ dependencies {

implementation spigot(mcVersion)

implementation 'cloud.commandframework:cloud-paper:1.6.1'
implementation "net.kyori:adventure-platform-bukkit:4.0.1"
implementation "org.spongepowered:configurate-yaml:4.1.2"
implementation 'cloud.commandframework:cloud-paper:1.8.4'
implementation "net.kyori:adventure-platform-bukkit:4.4.1"
implementation "org.spongepowered:configurate-yaml:4.2.0"

testImplementation 'com.github.seeseemelk:MockBukkit-v1.18:1.15.5'
testImplementation 'com.github.seeseemelk:MockBukkit-v1.18:1.26.1'
testImplementation(testFixtures(project(":core")))
}

Expand Down
4 changes: 2 additions & 2 deletions platform/bungeecord/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ repositories {
}

dependencies {
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.8.1'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.8.1'
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.14.2'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.14.2'
}

test {
Expand Down
4 changes: 2 additions & 2 deletions platform/minestom/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ repositories {
}

dependencies {
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.8.1'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.8.1'
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.14.2'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.14.2'
}

test {
Expand Down
Loading