Skip to content

Commit 3ec75c3

Browse files
committed
Replace spring-jcl references with commons-logging in system tests
See gh-45487
1 parent 1308629 commit 3ec75c3

File tree

1 file changed

+4
-4
lines changed
  • spring-boot-system-tests/spring-boot-image-tests/src/systemTest/java/org/springframework/boot/image/paketo

1 file changed

+4
-4
lines changed

spring-boot-system-tests/spring-boot-image-tests/src/systemTest/java/org/springframework/boot/image/paketo/PaketoBuilderTests.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -502,12 +502,12 @@ private void assertImageHasDependenciesSbomLayer(ImageReference imageReference,
502502
"/layers/sbom/launch/paketo-buildpacks_" + buildpack + "/sbom.cdx.json");
503503
layer.jsonEntry("/layers/sbom/launch/paketo-buildpacks_" + buildpack + "/sbom.syft.json",
504504
(json) -> json.extractingJsonPathArrayValue("$.artifacts.[*].name")
505-
.contains("spring-beans", "spring-boot", "spring-boot-autoconfigure", "spring-context",
506-
"spring-core", "spring-expression", "spring-jcl", "spring-web", "spring-webmvc"));
505+
.contains("commons-logging", "spring-beans", "spring-boot", "spring-boot-autoconfigure",
506+
"spring-context", "spring-core", "spring-expression", "spring-web", "spring-webmvc"));
507507
layer.jsonEntry("/layers/sbom/launch/paketo-buildpacks_" + buildpack + "/sbom.cdx.json",
508508
(json) -> json.extractingJsonPathArrayValue("$.components.[*].name")
509-
.contains("spring-beans", "spring-boot", "spring-boot-autoconfigure", "spring-context",
510-
"spring-core", "spring-expression", "spring-jcl", "spring-web", "spring-webmvc"));
509+
.contains("commons-logging", "spring-beans", "spring-boot", "spring-boot-autoconfigure",
510+
"spring-context", "spring-core", "spring-expression", "spring-web", "spring-webmvc"));
511511
});
512512
}
513513

0 commit comments

Comments
 (0)