We are using openapi-generator's openapi-generator-maven-plugin to automate an integration with a swagger which uses Numeric datatypes that are not int64. Our codebase tries to standardize around using Long values, but openapi generates artifacts which use int. Is it possible to configure the plugin to generate POJOs which use Long instead of Integer?
We could modify the swagger definition to specify the int64 format but prefer to do this via configuration outside of the swagger.