com.github.michaelruocco.embedded-mysql-plugin
所有者: Michael Ruocco
Gradle 插件,用于测试时运行嵌入式的 MySQL
https://github.com/michaelruocco/embedded-mysql-plugin
来源: https://github.com/michaelruocco/embedded-mysql-plugin.git
使用 插件 DSL
plugins {
id("com.github.michaelruocco.embedded-mysql-plugin") version "2.1.11"
}
使用 旧插件应用程序
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.github.michaelruocco.embedded-mysql-plugin:embedded-mysql-plugin:2.1.11")
}
}
apply(plugin = "com.github.michaelruocco.embedded-mysql-plugin")
使用 插件 DSL
plugins {
id "com.github.michaelruocco.embedded-mysql-plugin" version "2.1.11"
}
使用 旧插件应用程序
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.github.michaelruocco.embedded-mysql-plugin:embedded-mysql-plugin:2.1.11"
}
}
apply plugin: "com.github.michaelruocco.embedded-mysql-plugin"