Search Gradle plugins

Version 1.7.4 (latest)

Created 03 August 2017.

Swagger code generator

Using the plugins DSL:

plugins {
  id("org.detoeuf.swagger-codegen") version "1.7.4"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.org.detoeuf:swagger-codegen-plugin:1.7.4")
  }
}

apply(plugin = "org.detoeuf.swagger-codegen")

Using the plugins DSL:

plugins {
  id "org.detoeuf.swagger-codegen" version "1.7.4"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.org.detoeuf:swagger-codegen-plugin:1.7.4"
  }
}

apply plugin: "org.detoeuf.swagger-codegen"

Learn how to apply plugins to subprojects