搜索 Gradle 插件

版本 0.4.1 (最新)

0.4.1

创建于 2018 年 7 月 31 日。

Gradle 的简单许可证头管理器

使用 插件 DSL

plugins {
  id("net.minecrell.licenser") version "0.4.1"
}

使用 旧版插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.net.minecrell:licenser:0.4.1")
  }
}

apply(plugin = "net.minecrell.licenser")

使用 插件 DSL

plugins {
  id "net.minecrell.licenser" version "0.4.1"
}

使用 旧版插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.net.minecrell:licenser:0.4.1"
  }
}

apply plugin: "net.minecrell.licenser"

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