Merge branch '3.5.x'

This commit is contained in:
Andy Wilkinson 2025-06-25 17:32:25 +01:00
commit 350dec4e5e
1 changed files with 8 additions and 2 deletions

View File

@ -243,9 +243,15 @@ abstract class AbstractBootArchiveIntegrationTests {
.filter((entry) -> !entry.isDirectory())
.map(JarEntry::getName)
.filter((name) -> name.startsWith(this.libPath));
if (this.gradleBuild.gradleVersionIsLessThan("9.0.0-rc-1")) {
assertThat(libEntryNames).containsExactly(this.libPath + "two-1.0.jar",
this.libPath + "commons-io-2.19.0.jar");
}
else {
assertThat(libEntryNames).containsExactly(this.libPath + "commons-io-2.19.0.jar",
this.libPath + "two-1.0.jar");
}
}
}
@TestTemplate