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

Version 8.0.5

Created 01 August 2017.

Checkmate enables Continuous Delivery for products or platforms that don't naturally support it. The OBI plugin introduces the following features for Oracle Business Intelligence: source control integration, content versioning and publishing, automated regression and integration testing, and automated deployments.

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects