com.github.pivotalservices.cf-app
Owner: Biju Kunjummen
Yet-Another-Gradle Plugin is an alternate plugin to facilitate deploying an app to Cloud Foundry
https://github.com/pivotalservices/ya-cf-app-gradle-plugin
Sources: https://github.com/pivotalservices/ya-cf-app-gradle-plugin
Version 2.2.0-rc.6
2.2.0-rc.6
Created 03 May 2018.
A gradle plugin to facilitate deploying an app to Cloud Foundry
Using the plugins DSL:
plugins {
id("com.github.pivotalservices.cf-app") version "2.2.0-rc.6"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.github.pivotalservices:ya-cf-app-gradle-plugin:2.2.0-rc.6")
}
}
apply(plugin = "com.github.pivotalservices.cf-app")
Using the plugins DSL:
plugins {
id "com.github.pivotalservices.cf-app" version "2.2.0-rc.6"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.github.pivotalservices:ya-cf-app-gradle-plugin:2.2.0-rc.6"
}
}
apply plugin: "com.github.pivotalservices.cf-app"