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.0.0-RC1
2.0.0-RC1
Created 17 October 2017.
A gradle plugin to facilitate deploying an app to Cloud Foundry
Using the plugins DSL:
plugins {
id("com.github.pivotalservices.cf-app") version "2.0.0-RC1"
}
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.0.0-RC1")
}
}
apply(plugin = "com.github.pivotalservices.cf-app")
Using the plugins DSL:
plugins {
id "com.github.pivotalservices.cf-app" version "2.0.0-RC1"
}
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.0.0-RC1"
}
}
apply plugin: "com.github.pivotalservices.cf-app"