com.epages.restdocs-api-spec
Owner: ePages Developers
Extends Spring REST Docs with API specifications in OpenAPI2, OpenAPI3 and Postman Collections formats
https://github.com/ePages-de/restdocs-api-spec
Sources: https://github.com/ePages-de/restdocs-api-spec
Version 0.18.1
Created 15 May 2023.
Extends Spring REST Docs with API specifications in OpenAPI2, OpenAPI3 and Postman Collections formats
Add this plugin to your build using the plugins DSL:
plugins {
id("com.epages.restdocs-api-spec") version "0.18.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("com.epages.restdocs-api-spec:com.epages.restdocs-api-spec.gradle.plugin:0.18.1") }
It can then be applied in the precompiled script plugin:plugins { id("com.epages.restdocs-api-spec") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.epages.restdocs-api-spec:com.epages.restdocs-api-spec.gradle.plugin:0.18.1") } } apply(plugin = "com.epages.restdocs-api-spec")
- Applying plugins to all subprojects .