com.github.nbyl.compound
Owner: Nicolas Byl
A gradle plugin to download and control docker-compose from your gradle build.
http://blog.nicolas-byl.eu/gradle-compound-plugin/
Sources: https://github.com/nbyl/gradle-compound-plugin.git
Version 0.4.0 (latest)
0.4.0
Created 16 September 2016.
A gradle plugin to download and control docker-compose from your gradle build.
Using the plugins DSL:
plugins {
id("com.github.nbyl.compound") version "0.4.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.github.nbyl.gradle:gradle-compound-plugin:0.4.0")
}
}
apply(plugin = "com.github.nbyl.compound")
Using the plugins DSL:
plugins {
id "com.github.nbyl.compound" version "0.4.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.github.nbyl.gradle:gradle-compound-plugin:0.4.0"
}
}
apply plugin: "com.github.nbyl.compound"