搜索Gradle插件

使用 插件 DSL

plugins {
  id("com.github.vlsi.license-gather") version "1.90"
}

使用 旧插件应用

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

apply(plugin = "com.github.vlsi.license-gather")

使用 插件 DSL

plugins {
  id "com.github.vlsi.license-gather" version "1.90"
}

使用 旧插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "com.github.vlsi.gradle:license-gather-plugin:1.90"
  }
}

apply plugin: "com.github.vlsi.license-gather"

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