com.redpillanalytics.checkmate.db
所有者: Stewart Bryson
数据库的CI/CD框架。
https://github.com/RedPillAnalytics/checkmate-db/
来源: https://github.com/RedPillAnalytics/checkmate-db/
使用插件DSL
plugins {
id("com.redpillanalytics.checkmate.db") version "0.1.10"
}
使用旧版插件应用
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.redpillanalytics:checkmate-db:0.1.10")
}
}
apply(plugin = "com.redpillanalytics.checkmate.db")
使用插件DSL
plugins {
id "com.redpillanalytics.checkmate.db" version "0.1.10"
}
使用旧版插件应用
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.redpillanalytics:checkmate-db:0.1.10"
}
}
apply plugin: "com.redpillanalytics.checkmate.db"