Search Gradle plugins

Version 0.1.1

Created 18 June 2015.

Apache RAT (Release Audit Tool) Gradle Plugin

Using the plugins DSL:

plugins {
  id("org.nosphere.apache.rat") version "0.1.1"
}

Using legacy plugin application:

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

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

Using the plugins DSL:

plugins {
  id "org.nosphere.apache.rat" version "0.1.1"
}

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects