搜索Gradle插件

版本 0.9.3(最新版)

0.9.3

创建日期:2023年6月20日。

Gradle插件,它能生成项目HTML许可证报告的任务。

使用插件的DSL

plugins {
  id("com.jaredsburrows.license") version "0.9.3"
}

使用旧的插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("com.jaredsburrows:gradle-license-plugin:0.9.3")
  }
}

apply(plugin = "com.jaredsburrows.license")

使用插件的DSL

plugins {
  id "com.jaredsburrows.license" version "0.9.3"
}

使用旧的插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "com.jaredsburrows:gradle-license-plugin:0.9.3"
  }
}

apply plugin: "com.jaredsburrows.license"

了解如何将插件应用到子项目中