net.slkdev.swagger-confluence
Owner: Aaron Knight
A plugin for parsing a Swagger schema and publishing API documentation to an Atlassian Confluence server
https://cloud.slkdev.net/swagger-confluence/
Sources: https://cloud.slkdev.net/gitlab/starlightknight/swagger-confluence
Version 2.2-RELEASE (latest)
Created 17 May 2016.
This plugin version will no longer resolve after JCenter becomes a permanent redirect to Maven Central as it uses dependencies only found in JCenter. See the following blog post for details: https://blog.gradle.org/portal-jcenter-impact
A plugin for parsing a Swagger schema and publishing API documentation to an Atlassian Confluence server
Add this plugin to your build using the plugins DSL:
plugins {
id("net.slkdev.swagger-confluence") version "2.2-RELEASE"
}
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("net.slkdev.swagger-confluence:net.slkdev.swagger-confluence.gradle.plugin:2.2-RELEASE") }
It can then be applied in the precompiled script plugin:plugins { id("net.slkdev.swagger-confluence") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("net.slkdev.swagger-confluence:net.slkdev.swagger-confluence.gradle.plugin:2.2-RELEASE") } } apply(plugin = "net.slkdev.swagger-confluence")
- Applying plugins to all subprojects .