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