搜索Gradle插件

版本 0.8.1 (最新)

0.8.1

创建时间:2023年9月3日。

Apache RAT (发布审计工具) Gradle插件

使用 插件DSL

plugins {
  id("org.nosphere.apache.rat") 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")

使用 插件DSL

plugins {
  id "org.nosphere.apache.rat" 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"

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