net.kaleidos.dwbh.gradle-fixtures-plugin
所有者: 马里奥·加西亚
使用JDBC连接加载数据库脚本的简单插件
https://github.com/dont-worry-be-happy/dwbh-gradle-fixtures
来源: https://github.com/dont-worry-be-happy/dwbh-gradle-fixtures
使用插件DSL
plugins {
id("net.kaleidos.dwbh.gradle-fixtures-plugin") version "0.1.2"
}
使用旧插件应用程序
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("net.kaleidos.dwbh:gradle-fixtures-plugin:0.1.2")
}
}
apply(plugin = "net.kaleidos.dwbh.gradle-fixtures-plugin")
使用插件DSL
plugins {
id "net.kaleidos.dwbh.gradle-fixtures-plugin" version "0.1.2"
}
使用旧插件应用程序
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "net.kaleidos.dwbh:gradle-fixtures-plugin:0.1.2"
}
}
apply plugin: "net.kaleidos.dwbh.gradle-fixtures-plugin"