Skip to content

Commit

Permalink
Seta versão 2023.1.3-SNAPSHOT para spring-data
Browse files Browse the repository at this point in the history
  • Loading branch information
marcusdacoregio committed Feb 14, 2024
1 parent 5295c20 commit 10bcf87
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion rinha-api/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ plugins {
java
id("org.springframework.boot") version "3.2.2"
id("io.spring.dependency-management") version "1.1.4"
id("org.hibernate.orm") version "6.4.1.Final"
id("org.graalvm.buildtools.native") version "0.9.28"
}

Expand All @@ -14,6 +15,12 @@ java {

repositories {
mavenCentral()
maven { url = uri("https://repo.spring.io/milestone") }
maven { url = uri("https://repo.spring.io/snapshot") }
}

ext {
set("spring-data-bom.version", "2023.1.3-SNAPSHOT")
}

dependencies {
Expand All @@ -31,4 +38,10 @@ dependencies {

tasks.withType<Test> {
useJUnitPlatform()
}
}

hibernate {
enhancement {
enableAssociationManagement.set(true)
}
}

0 comments on commit 10bcf87

Please sign in to comment.