Search Gradle plugins

Version 3.4.2.1 (latest)

Created 19 April 2021.

Mybatis plus generator plugin

Using the plugins DSL:

plugins {
  id("cn.mycommons.mpg") version "3.4.2.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("cn.mycommons:buildSrc:3.4.2.1")
  }
}

apply(plugin = "cn.mycommons.mpg")

Using the plugins DSL:

plugins {
  id "cn.mycommons.mpg" version "3.4.2.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "cn.mycommons:buildSrc:3.4.2.1"
  }
}

apply plugin: "cn.mycommons.mpg"

Learn how to apply plugins to subprojects