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
Version 0.7.22 (latest)
Created 16 December 2016.
This plugin version will no longer resolve after JCenter becomes a permanent redirect to Maven Central as it uses dependencies only found in JCenter. See the following blog post for details: https://blog.gradle.org/portal-jcenter-impact
Simple Continuous Delivery for Java and Groovy Developers
Add this plugin to your build using the plugins DSL:
plugins {
id("com.datamaio.scd4j") version "0.7.22"
}
See also:
-
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts)
:dependencies { implementation("com.datamaio.scd4j:com.datamaio.scd4j.gradle.plugin:0.7.22") }
It can then be applied in the precompiled script plugin:plugins { id("com.datamaio.scd4j") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.datamaio.scd4j:com.datamaio.scd4j.gradle.plugin:0.7.22") } } apply(plugin = "com.datamaio.scd4j")
- Applying plugins to all subprojects .