com.github.boginw.mybatis-migrations
通过Gradle运行MyBatis迁移命令
https://github.com/boginw/migrations-gradle-plugin
来源: https://github.com/boginw/migrations-gradle-plugin
使用插件DSL
plugins {
id("com.github.boginw.mybatis-migrations") version "0.3.1"
}
使用遗留插件应用
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("com.github.boginw:migrations-gradle-plugin:0.3.1")
}
}
apply(plugin = "com.github.boginw.mybatis-migrations")
使用插件DSL
plugins {
id "com.github.boginw.mybatis-migrations" version "0.3.1"
}
使用遗留插件应用
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "com.github.boginw:migrations-gradle-plugin:0.3.1"
}
}
apply plugin: "com.github.boginw.mybatis-migrations"