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() {
57
57
this .fileSystemOperations .sync ((sync ) -> {
58
58
sync .into (getOutputDir ());
59
59
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" ));
62
63
sync .from (this .archiveOperations .zipTree (configuration .getSingleFile ()));
63
64
}
64
65
});
You can’t perform that action at this time.
0 commit comments