com.github.chantsune.license-tools-plus
拥有者: ChanTsune
编辑 Cookpad 许可工具插件生成的 yaml 文件
https://github.com/ChanTsune/LicenseToolsPlusPlugin
源代码: https://github.com/ChanTsune/LicenseToolsPlusPlugin
使用 plugins DSL
plugins {
id("com.github.chantsune.license-tools-plus") version "0.4.1"
}
使用 旧插件应用
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("com.github.chantsune:license-tools-plus:0.4.1")
}
}
apply(plugin = "com.github.chantsune.license-tools-plus")
使用 plugins DSL
plugins {
id "com.github.chantsune.license-tools-plus" version "0.4.1"
}
使用 旧插件应用
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "com.github.chantsune:license-tools-plus:0.4.1"
}
}
apply plugin: "com.github.chantsune.license-tools-plus"