org.nosphere.honker
Owner: Paul Merlin
The Honker Gradle Plugin help assemble legal bits
https://github.com/eskatos/honker-gradle
Sources: https://github.com/eskatos/honker-gradle
Version 0.2.2
0.2.2
Created 13 June 2016.
The Honker Gradle Plugin help assemble legal bits
Using the plugins DSL:
plugins {
id("org.nosphere.honker") version "0.2.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.org.nosphere.honker:honker-gradle:0.2.2")
}
}
apply(plugin = "org.nosphere.honker")
Using the plugins DSL:
plugins {
id "org.nosphere.honker" version "0.2.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.org.nosphere.honker:honker-gradle:0.2.2"
}
}
apply plugin: "org.nosphere.honker"