Search Gradle plugins

Version 1.1

1.1

Created 15 November 2015.

Swagger code generator

Add this plugin to your build using the plugins DSL:

plugins {
  id("org.detoeuf.swagger-code-gen") version "1.1"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("gradle.plugin.org.detoeuf:swagger-codegen-plugin:1.1")
      }
    }
    
    apply(plugin = "org.detoeuf.swagger-code-gen")
  • Applying plugins to all subprojects .