com.github.deepy.licensing-report
所有者: Alex Nordlund
创建您构建中使用的许可证报告。
https://github.com/deepy/gradle-license-plugin
来源: https://github.com/deepy/gradle-license-plugin.git
使用插件DSL
plugins {
id("com.github.deepy.licensing-report") version "0.2.0"
}
使用旧插件应用方式
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.github.deepy.licensing-report:gradle-license-plugin:0.2.0")
}
}
apply(plugin = "com.github.deepy.licensing-report")
使用插件DSL
plugins {
id "com.github.deepy.licensing-report" version "0.2.0"
}
使用旧插件应用方式
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.github.deepy.licensing-report:gradle-license-plugin:0.2.0"
}
}
apply plugin: "com.github.deepy.licensing-report"