com.fbix.gradle.swagger.codegen
所有者: Fabian Bendix
Swagger Codegen的Gradle插件
https://github.com/fbix/gradle-swagger-codegen-plugin
资源: https://github.com/fbix/gradle-swagger-codegen-plugin
使用 插件DSL
plugins {
id("com.fbix.gradle.swagger.codegen") version "0.1.1"
}
使用 旧插件应用
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("gradle.plugin.at.bendix.gradle:swagger-codegen-plugin:0.1.1")
}
}
apply(plugin = "com.fbix.gradle.swagger.codegen")
使用 插件DSL
plugins {
id "com.fbix.gradle.swagger.codegen" version "0.1.1"
}
使用 旧插件应用
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "gradle.plugin.at.bendix.gradle:swagger-codegen-plugin:0.1.1"
}
}
apply plugin: "com.fbix.gradle.swagger.codegen"