cz.alenkacz.gradle.marathon.deploy
所有者: Alena Varkockova
可以将应用程序部署到Marathon的Gradle插件
https://github.com/alenkacz/gradle-marathon-deployer
来源: https://github.com/alenkacz/gradle-marathon-deployer
使用插件的DSL
plugins {
id("cz.alenkacz.gradle.marathon.deploy") version "1.6.7"
}
使用旧插件应用程序
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("gradle.plugin.cz.alenkacz.gradle:gradle-marathon-deployer:1.6.7")
}
}
apply(plugin = "cz.alenkacz.gradle.marathon.deploy")
使用插件的DSL
plugins {
id "cz.alenkacz.gradle.marathon.deploy" version "1.6.7"
}
使用旧插件应用程序
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "gradle.plugin.cz.alenkacz.gradle:gradle-marathon-deployer:1.6.7"
}
}
apply plugin: "cz.alenkacz.gradle.marathon.deploy"