Search Gradle plugins

Version 1.0

1.0

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

See also:

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