Search Gradle plugins

Version 0.3.0

Created 19 February 2020.

Use the OpenShift oc client from within Gradle

Using the plugins DSL:

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

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.github.g3force:gradle-oc:0.3.0")
  }
}

apply(plugin = "com.github.g3force.oc")

Using the plugins DSL:

plugins {
  id "com.github.g3force.oc" version "0.3.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.github.g3force:gradle-oc:0.3.0"
  }
}

apply plugin: "com.github.g3force.oc"

Learn how to apply plugins to subprojects