io.github.neallon.mybatis-generator
拥有者: Neallon
Gradle 版 MyBatis Generator 插件
https://github.com/neallon/mybatis-generator-plugin
来源:https://github.com/neallon/mybatis-generator-plugin
版本 1.0 (最新版)
1.0
创建于 2023 年 4 月 11 日。
Gradle 版 MyBatis Generator 插件
使用 插件 DSL
plugins {
id("io.github.neallon.mybatis-generator") version "1.0"
}
使用 旧插件应用
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("io.github.neallon.mybatis-generator:mybatis-generator-plugin:1.0")
}
}
apply(plugin = "io.github.neallon.mybatis-generator")
使用 插件 DSL
plugins {
id "io.github.neallon.mybatis-generator" version "1.0"
}
使用 旧插件应用
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "io.github.neallon.mybatis-generator:mybatis-generator-plugin:1.0"
}
}
apply plugin: "io.github.neallon.mybatis-generator"