Merge branch '3.4.x' into 3.5.x

Closes gh-46263
This commit is contained in:
Stéphane Nicoll
2025-07-03 20:10:54 +02:00
2 changed files with 2 additions and 2 deletions
@@ -111,7 +111,7 @@ public abstract class GenerateAntoraPlaybook extends DefaultTask {
return project.provider(() -> {
Path playbookDir = toRealPath(getOutputFile().get().getAsFile().toPath()).getParent();
Path outputDir = toRealPath(siteDirectory);
return "." + File.separator + playbookDir.relativize(outputDir).toString();
return "." + File.separator + playbookDir.relativize(outputDir);
});
}
@@ -83,7 +83,7 @@ class AutoConfigureTestDatabaseDockerComposeIntegrationTests {
Files.writeString(composeFile, composeFileContent);
TestPropertySourceUtils.addInlinedPropertiesToEnvironment(applicationContext,
"spring.docker.compose.skip.in-tests=false", "spring.docker.compose.stop.command=down",
"spring.docker.compose.file=" + composeFile.toAbsolutePath().toString());
"spring.docker.compose.file=" + composeFile.toAbsolutePath());
}
catch (IOException ex) {
throw new UncheckedIOException(ex);