We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5295c20 commit 10bcf87Copy full SHA for 10bcf87
rinha-api/build.gradle.kts
@@ -2,6 +2,7 @@ plugins {
2
java
3
id("org.springframework.boot") version "3.2.2"
4
id("io.spring.dependency-management") version "1.1.4"
5
+ id("org.hibernate.orm") version "6.4.1.Final"
6
id("org.graalvm.buildtools.native") version "0.9.28"
7
}
8
@@ -14,6 +15,12 @@ java {
14
15
16
repositories {
17
mavenCentral()
18
+ maven { url = uri("https://repo.spring.io/milestone") }
19
+ maven { url = uri("https://repo.spring.io/snapshot") }
20
+}
21
+
22
+ext {
23
+ set("spring-data-bom.version", "2023.1.3-SNAPSHOT")
24
25
26
dependencies {
@@ -31,4 +38,10 @@ dependencies {
31
38
32
39
tasks.withType<Test> {
33
40
useJUnitPlatform()
34
-}
41
42
43
+hibernate {
44
+ enhancement {
45
+ enableAssociationManagement.set(true)
46
+ }
47
0 commit comments