Search Gradle plugins

Version 1.3.1

Created 14 April 2016.

Swagger code generator

Using the plugins DSL:

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

Using legacy plugin application:

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

apply(plugin = "org.detoeuf.swagger-code-gen")

Using the plugins DSL:

plugins {
  id "org.detoeuf.swagger-code-gen" version "1.3.1"
}

Using legacy plugin application:

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

apply plugin: "org.detoeuf.swagger-code-gen"

Learn how to apply plugins to subprojects