ajk.gradle.consul
Owner: Amir Kibbar
a Consul plugin for gradle
https://github.com/amirkibbar/red-apple
Sources: https://github.com/amirkibbar/red-apple.git
Version 0.1.10 (latest)
0.1.10
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"