org.hidetake.swagger.codegen
所有者: 伊东英作
Gradle Swagger Codegen 插件
https://github.com/int128/gradle-swagger-codegen-plugin
源代码:https://github.com/int128/gradle-swagger-codegen-plugin
使用 插件 DSL
plugins {
id("org.hidetake.swagger.codegen") version "1.1.0"
}
使用 遗留插件应用
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("gradle.plugin.org.hidetake:gradle-swagger-codegen-plugin:1.1.0")
}
}
apply(plugin = "org.hidetake.swagger.codegen")
使用 插件 DSL
plugins {
id "org.hidetake.swagger.codegen" version "1.1.0"
}
使用 遗留插件应用
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "gradle.plugin.org.hidetake:gradle-swagger-codegen-plugin:1.1.0"
}
}
apply plugin: "org.hidetake.swagger.codegen"