Search Gradle plugins

Version 0.5.0

Created 23 July 2019.

Apache RAT (Release Audit Tool) Gradle Plugin

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects