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