org.hibernate.orm
Owner: Hibernate.org
Applies Hibernate aspects into the build
https://github.com/hibernate/hibernate-orm/tree/main/tooling/hibernate-gradle-plugin
Sources: https://github.com/hibernate/hibernate-orm/tree/main/tooling/hibernate-gradle-plugin
Version 6.6.3.Final
Created 21 November 2024.
Applies Hibernate aspects into the build
Add this plugin to your build using the plugins DSL:
plugins {
id("org.hibernate.orm") version "6.6.3.Final"
}
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("org.hibernate.orm:org.hibernate.orm.gradle.plugin:6.6.3.Final") }
It can then be applied in the precompiled script plugin:plugins { id("org.hibernate.orm") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("org.hibernate.orm:org.hibernate.orm.gradle.plugin:6.6.3.Final") } } apply(plugin = "org.hibernate.orm")
- Applying plugins to all subprojects .