Search Gradle plugins

Version 0.1.3

Created 04 March 2016.

A simple license header manager for Gradle

Using the plugins DSL:

plugins {
  id("net.minecrell.licenser") version "0.1.3"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.net.minecrell:licenser:0.1.3")
  }
}

apply(plugin = "net.minecrell.licenser")

Using the plugins DSL:

plugins {
  id "net.minecrell.licenser" version "0.1.3"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.net.minecrell:licenser:0.1.3"
  }
}

apply plugin: "net.minecrell.licenser"

Learn how to apply plugins to subprojects