io.advantageous.marathon
Owner:
Geoffrey Chandler
Deploy your application to an Apache Marathon cluster.
https://github.com/advantageous/marathon-deploy-plugin
Sources: https://github.com/advantageous/marathon-deploy-plugin.git
Version 3.0.13 (latest)
Created 17 March 2018.
Deploy your application to an Apache Marathon cluster.
Add this plugin to your build using the plugins DSL:
plugins {
id("io.advantageous.marathon") version "3.0.13"
}
See also:
-
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts)
:dependencies { implementation("io.advantageous.marathon:io.advantageous.marathon.gradle.plugin:3.0.13") }
It can then be applied in the precompiled script plugin:plugins { id("io.advantageous.marathon") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("io.advantageous.marathon:io.advantageous.marathon.gradle.plugin:3.0.13") } } apply(plugin = "io.advantageous.marathon")
- Applying plugins to all subprojects .