搜索 Gradle 插件

版本 3.1.3 (最新版)

3.1.3

创建于 2023 年 8 月 28 日。

与 Indra 文件布局一致的 license-header 配置,使用 Cadix 许可证

使用 插件 DSL

plugins {
  id("net.kyori.indra.license-header") version "3.1.3"
}

使用 旧插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("net.kyori:indra-licenser-cadix:3.1.3")
  }
}

apply(plugin = "net.kyori.indra.license-header")

使用 插件 DSL

plugins {
  id "net.kyori.indra.license-header" version "3.1.3"
}

使用 旧插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "net.kyori:indra-licenser-cadix:3.1.3"
  }
}

apply plugin: "net.kyori.indra.license-header"

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