This is an automated email from the ASF dual-hosted git repository. pkarwasz pushed a commit to branch fix/gradle-test in repository https://gitbox.apache.org/repos/asf/logging-log4j-samples.git
commit 133c6edb351c3caa1d81d133864dc1a30c4355f2 Author: Piotr P. Karwasz <[email protected]> AuthorDate: Thu Dec 11 20:24:43 2025 +0100 Update Gradle test expectations Following the changes in apache/logging-log4j2#3984, the Gradle test’s expected compile classpath no longer includes `jsr305` or `spotbugs-annotations`. This PR updates the test assertions accordingly. --- log4j-samples-gradle-metadata/build.gradle | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/log4j-samples-gradle-metadata/build.gradle b/log4j-samples-gradle-metadata/build.gradle index 3b7ec4b..f43c635 100644 --- a/log4j-samples-gradle-metadata/build.gradle +++ b/log4j-samples-gradle-metadata/build.gradle @@ -45,13 +45,11 @@ def expectedCompileClasspath = [ "biz.aQute.bnd.annotation", "error_prone_annotations", "jspecify", - "jsr305", "log4j-api", "org.osgi.annotation.bundle", "org.osgi.annotation.versioning", "org.osgi.resource", - "org.osgi.service.serviceloader", - "spotbugs-annotations" + "org.osgi.service.serviceloader" ] tasks.register("assertRuntimeClasspath") {
