File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
buildSrc/src/main/java/org/springframework/boot/build/mavenplugin Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff 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 });
You can’t perform that action at this time.
0 commit comments