Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -499,8 +499,7 @@ default String getDecryptOption(JsonNode config, String defaultValue) {
}

default boolean isBuildMaven(JsonNode config, Boolean defaultValue) {
// TODO once all generators support Gradle, make the default to false.
boolean buildMaven = defaultValue == null ? true : defaultValue;
boolean buildMaven = defaultValue == null ? false : defaultValue;
JsonNode jsonNode = config.get("buildMaven");
if(jsonNode == null) {
((ObjectNode)config).put("buildMaven", buildMaven);
Expand Down