There was an error while loading. Please reload this page.
2 parents 33207a8 + 34108ac commit 83bdf8bCopy full SHA for 83bdf8b
buildSrc/src/main/java/org/springframework/boot/build/mavenplugin/PrepareMavenBinaries.java
@@ -57,8 +57,9 @@ public void prepareBinaries() {
57
this.fileSystemOperations.sync((sync) -> {
58
sync.into(getOutputDir());
59
for (String version : getVersions().get()) {
60
-Configuration configuration = getProject().getConfigurations().detachedConfiguration(
61
-getProject().getDependencies().create("org.apache.maven:apache-maven:" + version + ":bin@zip"));
+Configuration configuration = getProject().getConfigurations()
+.detachedConfiguration(getProject().getDependencies()
62
+.create("org.apache.maven:apache-maven:" + version + ":bin@zip"));
63
sync.from(this.archiveOperations.zipTree(configuration.getSingleFile()));
64
}
65
});
0 commit comments