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.19.2
0.19.2
Created 22 February 2024.
Extends Spring REST Docs with API specifications in OpenAPI2, OpenAPI3 and Postman Collections formats
Using the plugins DSL:
plugins {
id("com.epages.restdocs-api-spec") version "0.19.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.epages:restdocs-api-spec-gradle-plugin:0.19.2")
}
}
apply(plugin = "com.epages.restdocs-api-spec")
Using the plugins DSL:
plugins {
id "com.epages.restdocs-api-spec" version "0.19.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.epages:restdocs-api-spec-gradle-plugin:0.19.2"
}
}
apply plugin: "com.epages.restdocs-api-spec"