com.jxpanda.generator
                  Owner:
                  
                    
                    Pan Jianxin
                  
                
A plugin base on mybatis-plus-generator
Sources: https://gitee.com/JXPanda/jxpanda-generator.git
Version 2.1.10 (latest)
Created 17 March 2020.
                A plugin base on mybatis-plus-generator
                
            
            
            
                
            
            
        Add this plugin to your build using the plugins DSL:
plugins {
  id("com.jxpanda.generator") version "2.1.10"
}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.jxpanda.generator:com.jxpanda.generator.gradle.plugin:2.1.10") }It can then be applied in the precompiled script plugin:plugins { id("com.jxpanda.generator") }
- 
                The legacy method of plugin application.See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.jxpanda.generator:com.jxpanda.generator.gradle.plugin:2.1.10") } } apply(plugin = "com.jxpanda.generator")
- Applying plugins to all subprojects .