We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 24905c6 commit 3089d80Copy full SHA for 3089d80
build.gradle.kts
@@ -5,6 +5,8 @@ plugins {
5
kotlin("plugin.spring") version "1.9.25"
6
id("org.springframework.boot") version "3.4.3"
7
id("io.spring.dependency-management") version "1.1.7"
8
+ id("org.hibernate.orm") version "6.6.8.Final"
9
+ id("org.graalvm.buildtools.native") version "0.10.5"
10
kotlin("plugin.jpa") version "1.9.25"
11
id("com.gorylenko.gradle-git-properties") version "2.5.0"
12
}
@@ -77,6 +79,13 @@ kotlin {
77
79
78
80
81
82
+hibernate {
83
+ enhancement {
84
+ enableAssociationManagement = true
85
+ }
86
+}
87
+
88
89
allOpen {
90
annotation("jakarta.persistence.Entity")
91
annotation("jakarta.persistence.MappedSuperclass")
0 commit comments