Search Gradle plugins

Version 1.1.0 (latest)

1.1.0

Created 17 October 2016.

Gradle Swagger Codegen Plugin

Add this plugin to your build using the plugins DSL:

plugins {
  id("org.hidetake.swagger.codegen") version "1.1.0"
}

See also:

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