Owner:
leonxia
Mybatis generator plugin
https://github.com/LiushuiXiaoxia/mybatis-plus-gradle-generator
Sources: https://github.com/LiushuiXiaoxia/mybatis-plus-gradle-generator
Version 3.4.2.1 (latest)
Created 19 April 2021.
Mybatis plus generator plugin
Add this plugin to your build using the plugins DSL:
plugins {
id("cn.mycommons.mpg") version "3.4.2.1"
}
See also:
-
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts):dependencies { implementation("cn.mycommons.mpg:cn.mycommons.mpg.gradle.plugin:3.4.2.1") }It can then be applied in the precompiled script plugin:plugins { id("cn.mycommons.mpg") } -
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("cn.mycommons.mpg:cn.mycommons.mpg.gradle.plugin:3.4.2.1") } } apply(plugin = "cn.mycommons.mpg") - Applying plugins to all subprojects .