Search Gradle plugins

Version 3.0.13 (latest)

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"

Learn how to apply plugins to subprojects