org.hidetake.swagger.generator
Owner: Hidetake Iwata
Gradle Swagger Generator Plugin
https://github.com/int128/gradle-swagger-generator-plugin
Sources: https://github.com/int128/gradle-swagger-generator-plugin
Add this plugin to your build using the plugins DSL:
plugins {
id("org.hidetake.swagger.generator") version "1.5.1"
}
See also:
-
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts)
:dependencies { implementation("org.hidetake.swagger.generator:org.hidetake.swagger.generator.gradle.plugin:1.5.1") }
It can then be applied in the precompiled script plugin:plugins { id("org.hidetake.swagger.generator") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("org.hidetake.swagger.generator:org.hidetake.swagger.generator.gradle.plugin:1.5.1") } } apply(plugin = "org.hidetake.swagger.generator")
- Applying plugins to all subprojects .