Skip to content

Commit 34108ac

Browse files
committed
Merge branch '3.2.x' into 3.3.x
2 parents 77d9f16 + c98363d commit 34108ac

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

buildSrc/src/main/java/org/springframework/boot/build/mavenplugin/PrepareMavenBinaries.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,8 +57,9 @@ public void prepareBinaries() {
5757
this.fileSystemOperations.sync((sync) -> {
5858
sync.into(getOutputDir());
5959
for (String version : getVersions().get()) {
60-
Configuration configuration = getProject().getConfigurations().detachedConfiguration(
61-
getProject().getDependencies().create("org.apache.maven:apache-maven:" + version + ":bin@zip"));
60+
Configuration configuration = getProject().getConfigurations()
61+
.detachedConfiguration(getProject().getDependencies()
62+
.create("org.apache.maven:apache-maven:" + version + ":bin@zip"));
6263
sync.from(this.archiveOperations.zipTree(configuration.getSingleFile()));
6364
}
6465
});

0 commit comments

Comments
 (0)