com.github.g3force.oc
Owner: Nicolai Ommer
Use the OpenShift oc client from within Gradle
https://github.com/g3force/gradle-oc
Sources: https://github.com/g3force/gradle-oc.git
Version 0.4.2 (latest)
0.4.2
Created 27 September 2020.
Use the OpenShift oc client from within Gradle
Using the plugins DSL:
plugins {
id("com.github.g3force.oc") version "0.4.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.github.g3force:gradle-oc:0.4.2")
}
}
apply(plugin = "com.github.g3force.oc")
Using the plugins DSL:
plugins {
id "com.github.g3force.oc" version "0.4.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.github.g3force:gradle-oc:0.4.2"
}
}
apply plugin: "com.github.g3force.oc"