Change Spring Boot CLI init command docs default build system to gradle

See gh-40603
This commit is contained in:
coursar 2024-05-02 10:26:11 +03:00 committed by Moritz Halbritter
parent e471710fe6
commit 1a786fc788

View File

@ -165,7 +165,7 @@ public class InitCommand extends OptionParsingCommand {
this.packaging = option(Arrays.asList("packaging", "p"), "Project packaging (for example 'jar')")
.withRequiredArg();
this.build = option("build", "Build system to use (for example 'maven' or 'gradle')").withRequiredArg()
.defaultsTo("maven");
.defaultsTo("gradle");
this.format = option("format", "Format of the generated content (for example 'build' for a build file, "
+ "'project' for a project archive)")
.withRequiredArg()