Skip to content

Commit 10bcf87

Browse files
Seta versão 2023.1.3-SNAPSHOT para spring-data
spring-projects/spring-data-commons#3025
1 parent 5295c20 commit 10bcf87

File tree

1 file changed

+14
-1
lines changed

1 file changed

+14
-1
lines changed

rinha-api/build.gradle.kts

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ plugins {
22
java
33
id("org.springframework.boot") version "3.2.2"
44
id("io.spring.dependency-management") version "1.1.4"
5+
id("org.hibernate.orm") version "6.4.1.Final"
56
id("org.graalvm.buildtools.native") version "0.9.28"
67
}
78

@@ -14,6 +15,12 @@ java {
1415

1516
repositories {
1617
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")
1724
}
1825

1926
dependencies {
@@ -31,4 +38,10 @@ dependencies {
3138

3239
tasks.withType<Test> {
3340
useJUnitPlatform()
34-
}
41+
}
42+
43+
hibernate {
44+
enhancement {
45+
enableAssociationManagement.set(true)
46+
}
47+
}

0 commit comments

Comments
 (0)