Search Gradle plugins

Version 1.0.0 (latest)

1.0.0

Created 21 December 2021.

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

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

apply plugin: "com.theblueground.healthcheck"

Learn how to apply plugins to subprojects