com.dorkbox.Licensing
所有者: Dorkbox LLC
Gradle构建系统的许可证定义和法律管理插件
https://git.dorkbox.com/dorkbox/Licensing
源代码: https://git.dorkbox.com/dorkbox/Licensing
使用 plugins DSL
plugins {
id("com.dorkbox.Licensing") version "2.28"
}
使用 旧版插件应用
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("com.dorkbox:Licensing:2.28")
}
}
apply(plugin = "com.dorkbox.Licensing")
使用 plugins DSL
plugins {
id "com.dorkbox.Licensing" version "2.28"
}
使用 旧版插件应用
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "com.dorkbox:Licensing:2.28"
}
}
apply plugin: "com.dorkbox.Licensing"