Search Gradle plugins

Version 2.0.2 (latest)

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"

Learn how to apply plugins to subprojects