Search Gradle plugins

Version 0.16.3

Created 04 January 2023.

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

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects