com.xyznotes.gradle.MybatisGenerator
Owner: sunlong
Mybatis Generator Plugin original from com.arenagod.gradle.MybatisGenerator
https://github.com/liebe444ever/mybatis-generator-plugin.git
Sources: https://github.com/liebe444ever/mybatis-generator-plugin.git
Version 1.3.5.1 (latest)
Created 25 February 2017.
Mybatis Generator Plugin original from com.arenagod.gradle.MybatisGenerator
Add this plugin to your build using the plugins DSL:
plugins {
id("com.xyznotes.gradle.MybatisGenerator") version "1.3.5.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("com.xyznotes.gradle.MybatisGenerator:com.xyznotes.gradle.MybatisGenerator.gradle.plugin:1.3.5.1") }
It can then be applied in the precompiled script plugin:plugins { id("com.xyznotes.gradle.MybatisGenerator") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.xyznotes.gradle.MybatisGenerator:com.xyznotes.gradle.MybatisGenerator.gradle.plugin:1.3.5.1") } } apply(plugin = "com.xyznotes.gradle.MybatisGenerator")
- Applying plugins to all subprojects .