搜索 Gradle 插件

版本 1.0 (最新版)

1.0

创建于 2023 年 4 月 11 日。

Gradle 版 MyBatis Generator 插件

使用 插件 DSL

plugins {
  id("io.github.neallon.mybatis-generator") version "1.0"
}

使用 旧插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("io.github.neallon.mybatis-generator:mybatis-generator-plugin:1.0")
  }
}

apply(plugin = "io.github.neallon.mybatis-generator")

使用 插件 DSL

plugins {
  id "io.github.neallon.mybatis-generator" version "1.0"
}

使用 旧插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "io.github.neallon.mybatis-generator:mybatis-generator-plugin:1.0"
  }
}

apply plugin: "io.github.neallon.mybatis-generator"

了解如何在子项目中应用插件