com.redpillanalytics.checkmate.odi
Owner: Stewart Bryson
A CI/CD framework for Oracle Data Integrator.
https://github.com/RedPillAnalytics/checkmate-odi/
Sources: https://github.com/RedPillAnalytics/checkmate-odi/
Version 1.0.4
1.0.4
Created 14 October 2019.
A CI/CD framework for Oracle Data Integrator.
Using the plugins DSL:
plugins {
id("com.redpillanalytics.checkmate.odi") version "1.0.4"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.redpillanalytics:checkmate-odi:1.0.4")
}
}
apply(plugin = "com.redpillanalytics.checkmate.odi")
Using the plugins DSL:
plugins {
id "com.redpillanalytics.checkmate.odi" version "1.0.4"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.redpillanalytics:checkmate-odi:1.0.4"
}
}
apply plugin: "com.redpillanalytics.checkmate.odi"