com.benjaminsproule.swagger
Owner: Benjamin Sproule
Plugin to create Swagger documentation using Gradle
https://github.com/gigaSproule/swagger-gradle-plugin
Sources: https://github.com/gigaSproule/swagger-gradle-plugin
Version 1.0.14 (latest)
Created 20 October 2020.
Plugin to create Swagger documentation using Gradle
Add this plugin to your build using the plugins DSL:
plugins {
id("com.benjaminsproule.swagger") version "1.0.14"
}
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("com.benjaminsproule.swagger:com.benjaminsproule.swagger.gradle.plugin:1.0.14") }
It can then be applied in the precompiled script plugin:plugins { id("com.benjaminsproule.swagger") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.benjaminsproule.swagger:com.benjaminsproule.swagger.gradle.plugin:1.0.14") } } apply(plugin = "com.benjaminsproule.swagger")
- Applying plugins to all subprojects .