1.0.0.M6
Pre-release
      Pre-release
    
        improvements
- 
#68, exclude endpoints. To avoid an all-or-nothing issue it is possible to exclude endpoints when the generatr does not create the expected code. Excluded endpoints will be generated to a sibling interface with an Excludedpostfix for reference. To exclude an endpoint set theexcludeproperty on the endpoint in themapping.yaml:map: paths: /foo: exclude: true
- 
#62, it is now possible to add additional parameters not defined in the OpenAPI description to an endpoint by adding an add/asmapping like this to themapping.yaml:map: paths: /foo: parameters: - add: request as: javax.servlet.http.HttpServletRequest
- 
#34, support for bean validations. If enabled maps the openapi constraints to java bean validation annotations. Its off by default, to enable it set bean-validationtotruein themapping.yaml:options: bean-validation: trueThanks to @schlagi123