Search Gradle plugins

Version 2.1.11 (latest)

2.1.11

Created 27 November 2019.

Gradle plugin that enables running embedded MySQL for testing

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.github.michaelruocco.embedded-mysql-plugin") version "2.1.11"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("gradle.plugin.com.github.michaelruocco.embedded-mysql-plugin:embedded-mysql-plugin:2.1.11")
      }
    }
    
    apply(plugin = "com.github.michaelruocco.embedded-mysql-plugin")
  • Applying plugins to all subprojects .