Search Gradle plugins

com.datamaio.scd4j

SCD4J stands for Simple Continuous Delivery for Java and Groovy Developer. In short, SCD4J is an automation platform for configuring and installing your Web IT infrastructure. With just one command you can install clusters and deploy applications. Note that SCD4J is not another option for Puppet or Chef. It is, actually, a SIMPLER option than those tools. To know more about SCD4J, please take a look at https://github.com/scd4j/gradle-plugins/wiki

https://github.com/scd4j/gradle-plugins/wiki

Using the plugins DSL:

plugins {
  id("com.datamaio.scd4j") version "0.7.7"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.datamaio:scd4j:0.7.7")
  }
}

apply(plugin = "com.datamaio.scd4j")

Using the plugins DSL:

plugins {
  id "com.datamaio.scd4j" version "0.7.7"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.datamaio:scd4j:0.7.7"
  }
}

apply plugin: "com.datamaio.scd4j"

Learn how to apply plugins to subprojects