Search Gradle plugins

Version 0.0.2

Created 17 August 2022.

Auto generate Entity,Mapper,Dao class for mybatis

Using the plugins DSL:

plugins {
  id("pub.techfun.mybatis.plugin.default") version "0.0.2"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("pub.techfun:gradle-mybatis-plugin-default:0.0.2")
  }
}

apply(plugin = "pub.techfun.mybatis.plugin.default")

Using the plugins DSL:

plugins {
  id "pub.techfun.mybatis.plugin.default" version "0.0.2"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "pub.techfun:gradle-mybatis-plugin-default:0.0.2"
  }
}

apply plugin: "pub.techfun.mybatis.plugin.default"

Learn how to apply plugins to subprojects