Search Gradle plugins

Version 0.1.1

Created 01 July 2015.

The Honker Gradle Plugin help assemble legal bits

Using the plugins DSL:

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

Using legacy plugin application:

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

apply(plugin = "org.nosphere.honker")

Using the plugins DSL:

plugins {
  id "org.nosphere.honker" version "0.1.1"
}

Using legacy plugin application:

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

apply plugin: "org.nosphere.honker"

Learn how to apply plugins to subprojects