Search Gradle plugins

Version 0.4.2 (latest)

0.4.2

Created 27 September 2020.

Use the OpenShift oc client from within Gradle

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.github.g3force.oc") version "0.4.2"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("gradle.plugin.com.github.g3force:gradle-oc:0.4.2")
      }
    }
    
    apply(plugin = "com.github.g3force.oc")
  • Applying plugins to all subprojects .