Search Gradle plugins

Version 3.0.10

Created 29 November 2017.

Deploy your application to an Apache Marathon cluster.

Using the plugins DSL:

plugins {
  id("io.advantageous.marathon") version "3.0.10"
}

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

apply(plugin = "io.advantageous.marathon")

Using the plugins DSL:

plugins {
  id "io.advantageous.marathon" version "3.0.10"
}

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

apply plugin: "io.advantageous.marathon"

Learn how to apply plugins to subprojects