Owner:
Hibernate.org
Validates external Hibernate ORM Dialect providers and runs their database-free contract profiles
Version 8.0.0.Beta2 (latest)
Created 23 September 2026.
Validates external Hibernate ORM Dialect providers and runs their database-free contract profiles
Add this plugin to your build using the plugins DSL:
plugins {
id("org.hibernate.orm.dialect-provider") version "8.0.0.Beta2"
}
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.dialect-provider:org.hibernate.orm.dialect-provider.gradle.plugin:8.0.0.Beta2") }It can then be applied in the precompiled script plugin:plugins { id("org.hibernate.orm.dialect-provider") } -
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("org.hibernate.orm.dialect-provider:org.hibernate.orm.dialect-provider.gradle.plugin:8.0.0.Beta2") } } apply(plugin = "org.hibernate.orm.dialect-provider") - Applying plugins to all subprojects .