Search Gradle plugins

Version 1.0.14 (latest)

1.0.14

Created 20 October 2020.

Plugin to create Swagger documentation using Gradle

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.benjaminsproule.swagger") version "1.0.14"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("gradle.plugin.com.benjaminsproule:plugin:1.0.14")
      }
    }
    
    apply(plugin = "com.benjaminsproule.swagger")
  • Applying plugins to all subprojects .