Search Gradle plugins

Version 0.14.0

Created 19 October 2021.

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.14.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.epages:restdocs-api-spec-gradle-plugin:0.14.0")
  }
}

apply(plugin = "com.epages.restdocs-api-spec")

Using the plugins DSL:

plugins {
  id "com.epages.restdocs-api-spec" version "0.14.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.epages:restdocs-api-spec-gradle-plugin:0.14.0"
  }
}

apply plugin: "com.epages.restdocs-api-spec"

Learn how to apply plugins to subprojects