Missing Jackson annotations for enum
Generator does not generate all required imports for inner class enums. JsonCreator and JsonValue annotations are created but imports are missing leading into compile errors.
As found in pojo template there is only JsonProperty import present. https://github.com/swagger-api/swagger-codegen-generators/blob/117dbb52f2e8f27cdd760e955e306b670a21ed8a/src/main/resources/handlebars/JavaJaxRS/spec/pojo.mustache#L3
and enum template where JsonCreator is present: https://github.com/swagger-api/swagger-codegen-generators/blob/117dbb52f2e8f27cdd760e955e306b670a21ed8a/src/main/resources/handlebars/JavaJaxRS/enumClass.mustache#L35
This is the same as https://github.com/swagger-api/swagger-codegen/issues/8642 for 2.x
https://github.com/swagger-api/swagger-codegen-generators/pull/732
Created a new PR with all the latest changes from the master branch https://github.com/swagger-api/swagger-codegen-generators/pull/1045