net.dumbcode.gradlehook
Owner: Price
Adds a task to post a build to a webhook
Sources: https://github.com/Dumb-Code/GradleHook
Using the plugins DSL:
plugins {
id("net.dumbcode.gradlehook") version "1.1.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("net.dumbcode.gradlehook:GradleHook:1.1.0")
}
}
apply(plugin = "net.dumbcode.gradlehook")
Using the plugins DSL:
plugins {
id "net.dumbcode.gradlehook" version "1.1.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "net.dumbcode.gradlehook:GradleHook:1.1.0"
}
}
apply plugin: "net.dumbcode.gradlehook"