com.redpillanalytics.checkmate.db
Owner: Stewart Bryson
A CI/CD framework for Databases.
https://github.com/RedPillAnalytics/checkmate-db/
Sources: https://github.com/RedPillAnalytics/checkmate-db/
Using the plugins DSL:
plugins {
id("com.redpillanalytics.checkmate.db") version "0.1.7"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.redpillanalytics:checkmate-db:0.1.7")
}
}
apply(plugin = "com.redpillanalytics.checkmate.db")
Using the plugins DSL:
plugins {
id "com.redpillanalytics.checkmate.db" version "0.1.7"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.redpillanalytics:checkmate-db:0.1.7"
}
}
apply plugin: "com.redpillanalytics.checkmate.db"