mirror of
https://github.com/spring-projects/spring-boot.git
synced 2026-09-17 12:09:16 +00:00
Merge branch '3.4.x' into 3.5.x
Closes gh-46263
This commit is contained in:
+1
-1
@@ -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);
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
+1
-1
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user