org.detoeuf.swagger-codegen
Owner: Jean Detoeuf
Swagger code generator
Sources: https://github.com/thebignet/swagger-codegen-gradle-plugin
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"