搜索Gradle插件

版本 1.6.7(最新版)

1.6.7

创建于2017年5月25日。

可以将应用程序部署到Marathon的Gradle插件

使用插件的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"

了解如何将插件应用到子项目中