com.redpillanalytics.checkmate.obi
Owner: Stewart Bryson
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 12.1.4 (latest)
12.1.4
Created 22 March 2021.
Checkmate for OBI is a CI/CD platform for Oracle BI, introducing git integration, content publishing, automated testing, and automated deployments.
Using the plugins DSL:
plugins {
id("com.redpillanalytics.checkmate.obi") version "12.1.4"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.redpillanalytics:checkmate-obi:12.1.4")
}
}
apply(plugin = "com.redpillanalytics.checkmate.obi")
Using the plugins DSL:
plugins {
id "com.redpillanalytics.checkmate.obi" version "12.1.4"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.redpillanalytics:checkmate-obi:12.1.4"
}
}
apply plugin: "com.redpillanalytics.checkmate.obi"