com.lyrieek.eg
Owner: lyrieek
Entity Generator
https://github.com/lyrieek/entity-generator
Sources: https://github.com/lyrieek/entity-generator.git
Version 1.4
Created 12 January 2025.
The Entity Generator is a tool designed to streamline the process of creating entity classes for database operations. It generates cache files from database schemas, allows developers to annotate these cache files, and ultimately produces class files based on the yml config. This tool aims to enhance development efficiency and maintainability by automating the repetitive task of entity class generation.
Add this plugin to your build using the plugins DSL:
plugins {
id("com.lyrieek.eg") version "1.4"
}
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.lyrieek.eg:com.lyrieek.eg.gradle.plugin:1.4") }
It can then be applied in the precompiled script plugin:plugins { id("com.lyrieek.eg") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.lyrieek.eg:com.lyrieek.eg.gradle.plugin:1.4") } } apply(plugin = "com.lyrieek.eg")
- Applying plugins to all subprojects .