one.util.huntbugs
Owner: Tolkachev Kirill
HuntBugs gradle plugin
https://github.com/amaembo/huntbugs
Sources: https://github.com/lavcraft/huntbugs-gradle-plugin
Version 0.2.0-dev.6+7ed1ad7
0.2.0-dev.6+7ed1ad7
Created 03 June 2016.
HuntBugs gradle plugin
Using the plugins DSL:
plugins {
id("one.util.huntbugs") version "0.2.0-dev.6+7ed1ad7"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.one.util.huntbugs:huntbugs-gradle-plugin:0.2.0-dev.6+7ed1ad7")
}
}
apply(plugin = "one.util.huntbugs")
Using the plugins DSL:
plugins {
id "one.util.huntbugs" version "0.2.0-dev.6+7ed1ad7"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.one.util.huntbugs:huntbugs-gradle-plugin:0.2.0-dev.6+7ed1ad7"
}
}
apply plugin: "one.util.huntbugs"