com.jos.utils.codegen
Owner: Joslin.shen
Jos Utils - CodeGen Tool!
Sources: https://gitlab.com/code_tool/querydsl-plugin-ver2
Add this plugin to your build using the plugins DSL:
plugins {
id("com.jos.utils.codegen") version "1.0.19"
}
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("com.jos.utils.codegen:com.jos.utils.codegen.gradle.plugin:1.0.19") }
It can then be applied in the precompiled script plugin:plugins { id("com.jos.utils.codegen") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.jos.utils.codegen:com.jos.utils.codegen.gradle.plugin:1.0.19") } } apply(plugin = "com.jos.utils.codegen")
- Applying plugins to all subprojects .