搜索 Gradle 插件

版本 2.3.0-rc.8 (最新)

2.3.0-rc.8

创建于 2018 年 12 月 11 日。

一个 Gradle 插件,用于简化应用程序在 Cloud Foundry 上的部署

使用 plugins DSL

plugins {
  id("com.github.pivotalservices.cf-app") version "2.3.0-rc.8"
}

使用 旧插件应用程序

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.github.pivotalservices:ya-cf-app-gradle-plugin:2.3.0-rc.8")
  }
}

apply(plugin = "com.github.pivotalservices.cf-app")

使用 plugins DSL

plugins {
  id "com.github.pivotalservices.cf-app" version "2.3.0-rc.8"
}

使用 旧插件应用程序

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.github.pivotalservices:ya-cf-app-gradle-plugin:2.3.0-rc.8"
  }
}

apply plugin: "com.github.pivotalservices.cf-app"

学习如何将插件应用于子项目