搜索 Gradle 插件

版本 0.8.1 (最新版)

0.8.1

创建于 2023 年 9 月 3 日。

Apache RAT (Release Audit Tool) Gradle 插件

使用 插件 DSL

plugins {
  id("org.nosphere.apache.rat-base") version "0.8.1"
}

使用 旧版插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("org.nosphere.apache:creadur-rat-gradle:0.8.1")
  }
}

apply(plugin = "org.nosphere.apache.rat-base")

使用 插件 DSL

plugins {
  id "org.nosphere.apache.rat-base" version "0.8.1"
}

使用 旧版插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "org.nosphere.apache:creadur-rat-gradle:0.8.1"
  }
}

apply plugin: "org.nosphere.apache.rat-base"

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