org.openapi.generator
Owner: Jim Schubert
OpenAPI Generator allows generation of API client libraries (SDK generation), server stubs, documentation and configuration automatically given an OpenAPI Spec (v2, v3)
https://openapi-generator.tech/
Sources: https://github.com/OpenAPITools/openapi-generator
Version 5.1.0
5.1.0
Created 20 March 2021.
OpenAPI Generator allows generation of API client libraries (SDK generation), server stubs, documentation and configuration automatically given an OpenAPI Spec (v2, v3)
Add this plugin to your build using the plugins DSL:
plugins {
id("org.openapi.generator") version "5.1.0"
}
See also:
-
The legacy method of plugin application.
buildscript { repositories { gradlePluginPortal() } dependencies { classpath("org.openapitools:openapi-generator-gradle-plugin:5.1.0") } } apply(plugin = "org.openapi.generator")
- Applying plugins to all subprojects .