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 "10.1.1"
}

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects