Skip to content

Commit

Permalink
Merge pull request #1243 from infomouse/master
Browse files Browse the repository at this point in the history
  • Loading branch information
andriy-dmytruk committed Oct 7, 2023
2 parents 0f987d0 + 66b48a1 commit 9589897
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -128,6 +128,7 @@ private void configureOptions() {
}
codeGenerator.setReactive(options.reactive);
codeGenerator.setGenerateHttpResponseAlways(options.generateHttpResponseAlways);
codeGenerator.setGenerateHttpResponseWhereRequired(options.generateHttpResponseWhereRequired);
codeGenerator.setUseOptional(options.optional);
codeGenerator.setUseBeanValidation(options.beanValidation);
codeGenerator.setTestTool(options.testFramework.value);
Expand Down Expand Up @@ -309,7 +310,7 @@ private static class DefaultOptionsBuilder implements MicronautCodeGeneratorOpti
private boolean optional;
private boolean reactive = true;
private boolean generateHttpResponseAlways;
private boolean generateHttpResponseWhereRequired;
private boolean generateHttpResponseWhereRequired = true;
private TestFramework testFramework = TestFramework.JUNIT5;
private SerializationLibraryKind serializationLibraryKind = SerializationLibraryKind.MICRONAUT_SERDE_JACKSON;
private DateTimeFormat dateTimeFormat = DateTimeFormat.ZONED_DATETIME;
Expand Down

0 comments on commit 9589897

Please sign in to comment.