Search Gradle plugins

Version 1.1.0

1.1.0

Created 13 June 2023.

Plugin for generate java code & markdown doc of Gradle plugins

Add this plugin to your build using the plugins DSL:

plugins {
  id("io.github.jyrmc") version "1.1.0"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("io.github.jyrmc:gradle-mybatis-codegen-plugin:1.1.0")
      }
    }
    
    apply(plugin = "io.github.jyrmc")
  • Applying plugins to all subprojects .