搜索 Gradle 插件

com.github.joschi.licenser

所有者: Jochen

用于 Gradle 的简单许可证标题管理器(org.cadixdev.licenser 的分支)

https://github.com/joschi/licenser

源代码: https://github.com/joschi/licenser

版本 0.6.1(最新版)

0.6.1

创建日期:2021 年 3 月 2 日。

用于 Gradle 的简单许可证标题管理器(org.cadixdev.licenser 的分支)

使用 插件 DSL

plugins {
  id("com.github.joschi.licenser") version "0.6.1"
}

使用 旧插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.github.joschi.licenser:licenser:0.6.1")
  }
}

apply(plugin = "com.github.joschi.licenser")

使用 插件 DSL

plugins {
  id "com.github.joschi.licenser" version "0.6.1"
}

使用 旧插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.github.joschi.licenser:licenser:0.6.1"
  }
}

apply plugin: "com.github.joschi.licenser"

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