com.github.michaelruocco.embedded-mysql-plugin
Owner:
Michael Ruocco
Gradle plugin that enables running embedded MySQL for testing
https://github.com/michaelruocco/embedded-mysql-plugin
Version 2.1.8
Created 12 January 2019.
Gradle plugin that enables running embedded MySQL for testing
Using the plugins DSL:
plugins {
id("com.github.michaelruocco.embedded-mysql-plugin") version "2.1.8"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.github.michaelruocco.embedded-mysql-plugin:embedded-mysql-plugin:2.1.8")
}
}
apply(plugin = "com.github.michaelruocco.embedded-mysql-plugin")
Using the plugins DSL:
plugins {
id "com.github.michaelruocco.embedded-mysql-plugin" version "2.1.8"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.github.michaelruocco.embedded-mysql-plugin:embedded-mysql-plugin:2.1.8"
}
}
apply plugin: "com.github.michaelruocco.embedded-mysql-plugin"