com.github.pivotalservices.cf-app
所有者: 比久·昆朱门
又是另一个 Gradle 插件是一个用于将应用程序部署到 Cloud Foundry 的替代插件
https://github.com/pivotalservices/ya-cf-app-gradle-plugin
来源: https://github.com/pivotalservices/ya-cf-app-gradle-plugin
使用 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"