Search Gradle plugins

Version 0.0.1

0.0.1

Created 15 December 2021.

This plugin allows you to do health checks on a specified endpoint

Using the plugins DSL:

plugins {
  id("com.theblueground.healthcheck") version "0.0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.theblueground.healthcheck:plugin:0.0.1")
  }
}

apply(plugin = "com.theblueground.healthcheck")

Using the plugins DSL:

plugins {
  id "com.theblueground.healthcheck" version "0.0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.theblueground.healthcheck:plugin:0.0.1"
  }
}

apply plugin: "com.theblueground.healthcheck"

Learn how to apply plugins to subprojects