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.2.31.Final
6.2.31.Final
Created 21 August 2024.
Applies Hibernate aspects into the build
Using the plugins DSL:
plugins {
id("org.hibernate.orm") version "6.2.31.Final"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("org.hibernate.orm:hibernate-gradle-plugin:6.2.31.Final")
}
}
apply(plugin = "org.hibernate.orm")
Using the plugins DSL:
plugins {
id "org.hibernate.orm" version "6.2.31.Final"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "org.hibernate.orm:hibernate-gradle-plugin:6.2.31.Final"
}
}
apply plugin: "org.hibernate.orm"