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 @@ -72,7 +72,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
12 changes: 6 additions & 6 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ buildscript {

plugins {
id 'com.github.johnrengelman.shadow' version '7.1.2'
id 'kr.entree.spigradle' version '2.4.3'
id 'io.freefair.lombok' version '6.6.1'
id 'kr.entree.spigradle' version '2.5.0'
id 'io.freefair.lombok' version '6.6.3'
id 'java'
id 'jacoco'
id 'idea'
Expand Down Expand Up @@ -81,11 +81,11 @@ dependencies {
implementation vaultAll()

// Test dependencies
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.9.2'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.9.2'
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.14.4'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.14.4'
testImplementation 'org.mockito:mockito-core:4.11.0'
testImplementation 'com.github.seeseemelk:MockBukkit-v1.19:2.144.3'
testImplementation 'org.assertj:assertj-core:3.24.1'
testImplementation 'com.github.seeseemelk:MockBukkit-v1.19:2.147.2'
testImplementation 'org.assertj:assertj-core:3.27.7'
}

shadowJar {
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
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
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
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
Loading