io.kitkit.swagger-doclet
Owner: rob boll
these aren't the droids you're looking for
Sources: https://github.com/kitkitcode/gradle-base
Version 0.10.62 (latest)
Created 19 October 2015.
these aren't the droids you're looking for
Add this plugin to your build using the plugins DSL:
plugins {
id("io.kitkit.swagger-doclet") version "0.10.62"
}
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("io.kitkit.swagger-doclet:io.kitkit.swagger-doclet.gradle.plugin:0.10.62") }
It can then be applied in the precompiled script plugin:plugins { id("io.kitkit.swagger-doclet") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("io.kitkit.swagger-doclet:io.kitkit.swagger-doclet.gradle.plugin:0.10.62") } } apply(plugin = "io.kitkit.swagger-doclet")
- Applying plugins to all subprojects .