Search Gradle plugins

com.redpillanalytics.checkmate.obi

Checkmate is a solution for enabling Continuous Integration for products that don't naturally support it. The OBI plugin enable CI/CD for Oracle Business Intelligence.

https://github.com/RedPillAnalytics/checkmate-obi

Sources: https://github.com/RedPillAnalytics/checkmate

Using the plugins DSL:

plugins {
  id("com.redpillanalytics.checkmate.obi") version "8.2.8"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.redpillanalytics:checkmate:8.2.8")
  }
}

apply(plugin = "com.redpillanalytics.checkmate.obi")

Using the plugins DSL:

plugins {
  id "com.redpillanalytics.checkmate.obi" version "8.2.8"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.redpillanalytics:checkmate:8.2.8"
  }
}

apply plugin: "com.redpillanalytics.checkmate.obi"

Learn how to apply plugins to subprojects