com.redpillanalytics.checkmate.infa
Owner: Stewart Bryson
A CI/CD framework for Informatica Powercenter.
https://github.com/RedPillAnalytics/checkmate-infa/
Sources: https://github.com/RedPillAnalytics/checkmate-infa/
Version 1.0.0 (latest)
1.0.0
Created 24 June 2019.
A CI/CD framework for Informatica Powercenter.
Using the plugins DSL:
plugins {
id("com.redpillanalytics.checkmate.infa") version "1.0.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.redpillanalytics:checkmate-infa:1.0.0")
}
}
apply(plugin = "com.redpillanalytics.checkmate.infa")
Using the plugins DSL:
plugins {
id "com.redpillanalytics.checkmate.infa" version "1.0.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.redpillanalytics:checkmate-infa:1.0.0"
}
}
apply plugin: "com.redpillanalytics.checkmate.infa"