io.advantageous.marathon
Owner: Geoffrey Chandler
Deploy your application to an Apache Marathon cluster.
https://github.com/advantageous/marathon-deploy-plugin
Sources: https://github.com/advantageous/marathon-deploy-plugin.git
Version 3.0.13 (latest)
3.0.13
Created 17 March 2018.
Deploy your application to an Apache Marathon cluster.
Using the plugins DSL:
plugins {
id("io.advantageous.marathon") version "3.0.13"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.io.advantageous.gradle:marathon-deploy-plugin:3.0.13")
}
}
apply(plugin = "io.advantageous.marathon")
Using the plugins DSL:
plugins {
id "io.advantageous.marathon" version "3.0.13"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.io.advantageous.gradle:marathon-deploy-plugin:3.0.13"
}
}
apply plugin: "io.advantageous.marathon"