nl.litpho.mybatisgenerator
Owner: Jasper de Vries
Gradle Mybatisgenerator plugin using Liquibase
https://github.com/litpho/mybatisgenerator-plugin
Sources: https://github.com/litpho/mybatisgenerator-plugin
Version 0.1.0 (latest)
Created 21 December 2022.
Gradle Mybatisgenerator plugin using Liquibase
Add this plugin to your build using the plugins DSL:
plugins {
id("nl.litpho.mybatisgenerator") version "0.1.0"
}
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("nl.litpho.mybatisgenerator:nl.litpho.mybatisgenerator.gradle.plugin:0.1.0") }
It can then be applied in the precompiled script plugin:plugins { id("nl.litpho.mybatisgenerator") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("nl.litpho.mybatisgenerator:nl.litpho.mybatisgenerator.gradle.plugin:0.1.0") } } apply(plugin = "nl.litpho.mybatisgenerator")
- Applying plugins to all subprojects .