搜索Gradle插件

版本 0.2.0 (最新版)

0.2.0

创建于 2020年7月13日。

创建您构建中使用的许可证报告。

使用插件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"

学习如何将插件应用到子项目中