Search Gradle plugins

Version 1.2.4

Created 05 September 2016.

Gradle plugin that can deploy your application to Marathon

Using the plugins DSL:

plugins {
  id("cz.alenkacz.gradle.marathon.deploy") version "1.2.4"
}

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

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

Using the plugins DSL:

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

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.cz.alenkacz.gradle:gradle-marathon-deployer:1.2.4"
  }
}

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

Learn how to apply plugins to subprojects