From: David ‘Bombe’ Roden Date: Sun, 19 Jul 2026 15:18:35 +0000 (+0200) Subject: ⬆️ Update JaCoCo and byte-buddy version to handle Java 21 X-Git-Url: https://git.pterodactylus.net/?a=commitdiff_plain;h=fc5b2af1ade66c59bee104761d3e5aea4d5b1d9d;p=Sone.git ⬆️ Update JaCoCo and byte-buddy version to handle Java 21 --- diff --git a/build.gradle b/build.gradle index 3ce5106..938d645 100644 --- a/build.gradle +++ b/build.gradle @@ -60,6 +60,8 @@ dependencies { testImplementation group: 'org.jetbrains.kotlin', name: 'kotlin-test-junit' testImplementation group: 'junit', name: 'junit', version: '4.13.2' testImplementation group: 'org.mockito', name: 'mockito-core', version: '4.11.0' + // override byte-buddy version from mockito with something newer that can handle Java 21+ + testImplementation group: 'net.bytebuddy', name: 'byte-buddy', version: '1.14.19' testImplementation group: 'org.hamcrest', name: 'hamcrest', version: '3.0' } @@ -106,7 +108,7 @@ javadoc { } jacoco { - toolVersion = '0.8.8' + toolVersion = '0.8.15' } jacocoTestReport {