Search Gradle plugins

Version 0.1.0 (latest)

0.1.0

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:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("nl.litpho.mybatisgenerator:mybatisgenerator-plugin:0.1.0")
      }
    }
    
    apply(plugin = "nl.litpho.mybatisgenerator")
  • Applying plugins to all subprojects .