fr.pierrickrouxel.jpa-entity-generator
Owner: Pierrick Rouxel
A plugin that helps you reverse you databases
https://github.com/pierrickrouxel/jpa-entity-generator
Sources: https://github.com/pierrickrouxel/jpa-entity-generator.git
Version 1.2.0 (latest)
Created 03 October 2024.
A plugin that helps you reverse you databases
Add this plugin to your build using the plugins DSL:
plugins {
id("fr.pierrickrouxel.jpa-entity-generator") version "1.2.0"
}
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("fr.pierrickrouxel.jpa-entity-generator:fr.pierrickrouxel.jpa-entity-generator.gradle.plugin:1.2.0") }
It can then be applied in the precompiled script plugin:plugins { id("fr.pierrickrouxel.jpa-entity-generator") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("fr.pierrickrouxel.jpa-entity-generator:fr.pierrickrouxel.jpa-entity-generator.gradle.plugin:1.2.0") } } apply(plugin = "fr.pierrickrouxel.jpa-entity-generator")
- Applying plugins to all subprojects .