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 0.1.0-SNAPSHOT
Created 25 March 2019.
A CI/CD framework for Informatica Powercenter.
Using the plugins DSL:
plugins {
id("com.redpillanalytics.checkmate.infa") version "0.1.0-SNAPSHOT"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.redpillanalytics:checkmate-infa:0.1.0-SNAPSHOT")
}
}
apply(plugin = "com.redpillanalytics.checkmate.infa")
Using the plugins DSL:
plugins {
id "com.redpillanalytics.checkmate.infa" version "0.1.0-SNAPSHOT"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.redpillanalytics:checkmate-infa:0.1.0-SNAPSHOT"
}
}
apply plugin: "com.redpillanalytics.checkmate.infa"