OpenAPI Generator allows generation of API client libraries (SDK generation), server stubs, documentation and configuration automatically given an OpenAPI Spec (v2, v3)
[ ] [Optional] Sponsorship to speed up the bug fix or feature request (example)
Description
I see one setter method is missing in latest version of CodeGenMojo class.
openapi-generator version 7.7.0 and 7.8.0
Earlier I was using 7.3.0 and to use support for angular 18 I am moving to 7.7.0/7.80 but getting compile time error as setBuildContext method is missing in new version
I am having a below code and now getting compile time error as setsetBuildContext is not available
CodeGenMojo codeGen = new CodeGenMojo();
DefaultBuildContext buildContext = new DefaultBuildContext();
buildContext.enableLogging(new ConsoleLogger(1, this.getClass().getSimpleName()));
codeGen.setBuildContext(buildContext);
OpenAPI declaration file content or url
Generation Details
Steps to reproduce
Just open codegenmojo class from 7.7.0 you will see method is missing
Bug Report Checklist
Description
I see one setter method is missing in latest version of CodeGenMojo class.
openapi-generator version 7.7.0 and 7.8.0
Earlier I was using 7.3.0 and to use support for angular 18 I am moving to 7.7.0/7.80 but getting compile time error as setBuildContext method is missing in new version
I am having a below code and now getting compile time error as setsetBuildContext is not available
CodeGenMojo codeGen = new CodeGenMojo(); DefaultBuildContext buildContext = new DefaultBuildContext(); buildContext.enableLogging(new ConsoleLogger(1, this.getClass().getSimpleName())); codeGen.setBuildContext(buildContext);
OpenAPI declaration file content or url
Generation Details
Steps to reproduce
Just open codegenmojo class from 7.7.0 you will see method is missing
Related issues/PRs
Suggest a fix