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 7.2.6-SNAPSHOT
Created 07 July 2017.
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.
Add this plugin to your build using the plugins DSL:
plugins {
id("com.redpillanalytics.checkmate.obi") version "7.2.6-SNAPSHOT"
}
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:7.2.6-SNAPSHOT") }
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:7.2.6-SNAPSHOT") } } apply(plugin = "com.redpillanalytics.checkmate.obi")
- Applying plugins to all subprojects .