vip.wswenyue.AutoGenerateCode
Owner: wenyue
A gradle plugin that generates code automatically.
https://wswenyue.github.io/AutoGenerateCode
Sources: https://github.com/wswenyue/AutoGenerateCode
Version 0.1.0-rc-89d0b64
Created 25 September 2022.
A gradle plugin that generates code automatically.
Add this plugin to your build using the plugins DSL:
plugins {
id("vip.wswenyue.AutoGenerateCode") version "0.1.0-rc-89d0b64"
}
See also:
-
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts)
:dependencies { implementation("vip.wswenyue.AutoGenerateCode:vip.wswenyue.AutoGenerateCode.gradle.plugin:0.1.0-rc-89d0b64") }
It can then be applied in the precompiled script plugin:plugins { id("vip.wswenyue.AutoGenerateCode") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("vip.wswenyue.AutoGenerateCode:vip.wswenyue.AutoGenerateCode.gradle.plugin:0.1.0-rc-89d0b64") } } apply(plugin = "vip.wswenyue.AutoGenerateCode")
- Applying plugins to all subprojects .