wtf.metio.yosql
Owner:
Sebastian Hoß
Code generator that translates SQL to Java
https://yosql.projects.metio.wtf/
Sources: https://github.com/metio/yosql/
Version 2023.2.8
Created 08 February 2023.
Code generator that translates SQL to Java
Add this plugin to your build using the plugins DSL:
plugins {
id("wtf.metio.yosql") version "2023.2.8"
}
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("wtf.metio.yosql:wtf.metio.yosql.gradle.plugin:2023.2.8") }
It can then be applied in the precompiled script plugin:plugins { id("wtf.metio.yosql") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("wtf.metio.yosql:wtf.metio.yosql.gradle.plugin:2023.2.8") } } apply(plugin = "wtf.metio.yosql")
- Applying plugins to all subprojects .