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 0.1.8
0.1.8
Created 20 December 2018.
A CI/CD framework for Oracle Data Integrator.
Using the plugins DSL:
plugins {
id("com.redpillanalytics.checkmate.odi") version "0.1.8"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.redpillanalytics:checkmate-odi:0.1.8")
}
}
apply(plugin = "com.redpillanalytics.checkmate.odi")
Using the plugins DSL:
plugins {
id "com.redpillanalytics.checkmate.odi" version "0.1.8"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.redpillanalytics:checkmate-odi:0.1.8"
}
}
apply plugin: "com.redpillanalytics.checkmate.odi"