cz.alenkacz.gradle.marathon.deploy
Owner: Alena Varkockova
Gradle plugin that can deploy your application to Marathon
https://github.com/alenkacz/gradle-marathon-deployer
Sources: https://github.com/alenkacz/gradle-marathon-deployer
Version 1.6.7 (latest)
1.6.7
Created 25 May 2017.
Gradle plugin that can deploy your application to Marathon
Using the plugins DSL:
plugins {
id("cz.alenkacz.gradle.marathon.deploy") version "1.6.7"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.cz.alenkacz.gradle:gradle-marathon-deployer:1.6.7")
}
}
apply(plugin = "cz.alenkacz.gradle.marathon.deploy")
Using the plugins DSL:
plugins {
id "cz.alenkacz.gradle.marathon.deploy" version "1.6.7"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.cz.alenkacz.gradle:gradle-marathon-deployer:1.6.7"
}
}
apply plugin: "cz.alenkacz.gradle.marathon.deploy"