Search Gradle plugins

Version 0.1.10 (latest)

Created 14 December 2016.

a Consul plugin for gradle to help running Consul during integration test and to allow registering and removing services and checks from a running Consul

Using the plugins DSL:

plugins {
  id("ajk.gradle.consul") version "0.1.10"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("ajk.gradle.consul:gradle-consul-plugin:0.1.10")
  }
}

apply(plugin = "ajk.gradle.consul")

Using the plugins DSL:

plugins {
  id "ajk.gradle.consul" version "0.1.10"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "ajk.gradle.consul:gradle-consul-plugin:0.1.10"
  }
}

apply plugin: "ajk.gradle.consul"

Learn how to apply plugins to subprojects