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)
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.
Add this plugin to your build using the plugins DSL:
plugins {
id("com.redpillanalytics.checkmate.obi") version "12.1.4"
}
See also:
-
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts)
:dependencies { implementation("com.redpillanalytics.checkmate.obi:com.redpillanalytics.checkmate.obi.gradle.plugin:12.1.4") }
It can then be applied in the precompiled script plugin:plugins { id("com.redpillanalytics.checkmate.obi") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.redpillanalytics.checkmate.obi:com.redpillanalytics.checkmate.obi.gradle.plugin:12.1.4") } } apply(plugin = "com.redpillanalytics.checkmate.obi")
- Applying plugins to all subprojects .