Skip to content

Commit 9dc8793

Browse files
committed
Upgrade to Hibernate 6.4.
Closes #3239 Original pull request: #3201
1 parent 6df5bd7 commit 9dc8793

File tree

2 files changed

+3
-38
lines changed

2 files changed

+3
-38
lines changed

Jenkinsfile

Lines changed: 1 addition & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ pipeline {
5555
}
5656

5757
parallel {
58-
stage("test: baseline (hibernate 6.3.x snapshots)") {
58+
stage("test: baseline (hibernate 6.4.x snapshots)") {
5959
agent {
6060
label 'data'
6161
}
@@ -66,25 +66,6 @@ pipeline {
6666
DEVELOCITY_ACCESS_KEY = credentials("${p['develocity.access-key']}")
6767
TESTCONTAINERS_IMAGE_SUBSTITUTOR = 'org.springframework.data.jpa.support.ProxyImageNameSubstitutor'
6868
}
69-
steps {
70-
script {
71-
docker.image(p['docker.java.next.image']).inside(p['docker.java.inside.docker']) {
72-
sh 'PROFILE=all-dbs,hibernate-63-next ci/test.sh'
73-
}
74-
}
75-
}
76-
}
77-
stage("test: baseline (hibernate 6.4.x snapshots)") {
78-
agent {
79-
label 'data'
80-
}
81-
options { timeout(time: 30, unit: 'MINUTES')}
82-
environment {
83-
ARTIFACTORY = credentials("${p['artifactory.credentials']}")
84-
GRADLE_ENTERPRISE_CACHE = credentials("${p['gradle-enterprise-cache.credentials']}")
85-
GRADLE_ENTERPRISE_ACCESS_KEY = credentials("${p['gradle-enterprise.access-key']}")
86-
TESTCONTAINERS_IMAGE_SUBSTITUTOR = 'org.springframework.data.jpa.support.ProxyImageNameSubstitutor'
87-
}
8869
steps {
8970
script {
9071
docker.image(p['docker.java.next.image']).inside(p['docker.java.inside.docker']) {

pom.xml

Lines changed: 2 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,8 @@
3030
<antlr>4.10.1</antlr> <!-- align with Hibernate's parser -->
3131
<eclipselink>3.0.3</eclipselink>
3232
<eclipselink-next>4.0.2</eclipselink-next>
33-
<hibernate>6.3.1.Final</hibernate>
34-
<hibernate-64-next-snapshots>6.4.0-SNAPSHOT</hibernate-64-next-snapshots>
35-
<hibernate-63-next-snapshots>6.3.2-SNAPSHOT</hibernate-63-next-snapshots>
33+
<hibernate>6.4.0.Final</hibernate>
34+
<hibernate-64-next-snapshots>6.4.1-SNAPSHOT</hibernate-64-next-snapshots>
3635
<hsqldb>2.7.1</hsqldb>
3736
<h2>2.2.220</h2>
3837
<jsqlparser>4.5</jsqlparser>
@@ -70,21 +69,6 @@
7069
</repository>
7170
</repositories>
7271
</profile>
73-
<profile>
74-
<id>hibernate-63-next</id>
75-
<properties>
76-
<hibernate>${hibernate-63-next-snapshots}</hibernate>
77-
</properties>
78-
<repositories>
79-
<repository>
80-
<id>sonatype-oss</id>
81-
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
82-
<releases>
83-
<enabled>false</enabled>
84-
</releases>
85-
</repository>
86-
</repositories>
87-
</profile>
8872
<profile>
8973
<id>all-dbs</id>
9074
<build>

0 commit comments

Comments
 (0)