de.qaware.cloud.deployer
Owner: Simon Jahreiß
Gradle plugin to deploy applications to Kubernetes and DC/OS Marathon.
https://github.com/qaware/gradle-cloud-deployer
Sources: https://github.com/qaware/gradle-cloud-deployer.git
Version 0.9.2 (latest)
0.9.2
Created 18 November 2016.
Gradle plugin to deploy applications to Kubernetes and DC/OS Marathon.
Using the plugins DSL:
plugins {
id("de.qaware.cloud.deployer") version "0.9.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.de.qaware.cloud.deployer:deployer:0.9.2")
}
}
apply(plugin = "de.qaware.cloud.deployer")
Using the plugins DSL:
plugins {
id "de.qaware.cloud.deployer" version "0.9.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.de.qaware.cloud.deployer:deployer:0.9.2"
}
}
apply plugin: "de.qaware.cloud.deployer"