Search Gradle plugins

Version 1.6.6

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.6"
}

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

apply(plugin = "cz.alenkacz.gradle.marathon.deploy")

Using the plugins DSL:

plugins {
  id "cz.alenkacz.gradle.marathon.deploy" version "1.6.6"
}

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.6"
  }
}

apply plugin: "cz.alenkacz.gradle.marathon.deploy"

Learn how to apply plugins to subprojects