Search Gradle plugins

Version 0.4.0 (latest)

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"

Learn how to apply plugins to subprojects