搜索Gradle插件

版本 2.1.5(最新版本)

2.1.5

创建于2017年4月25日。

一个使测试中运行嵌入式MySQL成为可能的Gradle插件

使用插件DSL

plugins {
  id("com.github.michaelruocco") version "2.1.5"
}

使用旧的插件应用程序

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.github.michaelruocco:embedded-mysql-plugin:2.1.5")
  }
}

apply(plugin = "com.github.michaelruocco")

使用插件DSL

plugins {
  id "com.github.michaelruocco" version "2.1.5"
}

使用旧的插件应用程序

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.github.michaelruocco:embedded-mysql-plugin:2.1.5"
  }
}

apply plugin: "com.github.michaelruocco"

了解如何将插件应用于子项目