Search Gradle plugins

Version 0.9.0

Created 24 October 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.0"
}

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.0")
  }
}

apply(plugin = "de.qaware.cloud.deployer")

Using the plugins DSL:

plugins {
  id "de.qaware.cloud.deployer" version "0.9.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.de.qaware.cloud.deployer:deployer:0.9.0"
  }
}

apply plugin: "de.qaware.cloud.deployer"

Learn how to apply plugins to subprojects