Search Gradle plugins

Version 0.1.0 (latest)

Created 21 December 2022.

Gradle Mybatisgenerator plugin using Liquibase

Using the plugins DSL:

plugins {
  id("nl.litpho.mybatisgenerator") version "0.1.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("nl.litpho.mybatisgenerator:mybatisgenerator-plugin:0.1.0")
  }
}

apply(plugin = "nl.litpho.mybatisgenerator")

Using the plugins DSL:

plugins {
  id "nl.litpho.mybatisgenerator" version "0.1.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "nl.litpho.mybatisgenerator:mybatisgenerator-plugin:0.1.0"
  }
}

apply plugin: "nl.litpho.mybatisgenerator"

Learn how to apply plugins to subprojects