Skip to content

Commit

Permalink
Upgrade to Hibernate 6.4.
Browse files Browse the repository at this point in the history
Closes #3239
Original pull request: #3201
  • Loading branch information
mp911de committed Nov 24, 2023
1 parent 6df5bd7 commit 9dc8793
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 38 deletions.
21 changes: 1 addition & 20 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ pipeline {
}

parallel {
stage("test: baseline (hibernate 6.3.x snapshots)") {
stage("test: baseline (hibernate 6.4.x snapshots)") {
agent {
label 'data'
}
Expand All @@ -66,25 +66,6 @@ pipeline {
DEVELOCITY_ACCESS_KEY = credentials("${p['develocity.access-key']}")
TESTCONTAINERS_IMAGE_SUBSTITUTOR = 'org.springframework.data.jpa.support.ProxyImageNameSubstitutor'
}
steps {
script {
docker.image(p['docker.java.next.image']).inside(p['docker.java.inside.docker']) {
sh 'PROFILE=all-dbs,hibernate-63-next ci/test.sh'
}
}
}
}
stage("test: baseline (hibernate 6.4.x snapshots)") {
agent {
label 'data'
}
options { timeout(time: 30, unit: 'MINUTES')}
environment {
ARTIFACTORY = credentials("${p['artifactory.credentials']}")
GRADLE_ENTERPRISE_CACHE = credentials("${p['gradle-enterprise-cache.credentials']}")
GRADLE_ENTERPRISE_ACCESS_KEY = credentials("${p['gradle-enterprise.access-key']}")
TESTCONTAINERS_IMAGE_SUBSTITUTOR = 'org.springframework.data.jpa.support.ProxyImageNameSubstitutor'
}
steps {
script {
docker.image(p['docker.java.next.image']).inside(p['docker.java.inside.docker']) {
Expand Down
20 changes: 2 additions & 18 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,8 @@
<antlr>4.10.1</antlr> <!-- align with Hibernate's parser -->
<eclipselink>3.0.3</eclipselink>
<eclipselink-next>4.0.2</eclipselink-next>
<hibernate>6.3.1.Final</hibernate>
<hibernate-64-next-snapshots>6.4.0-SNAPSHOT</hibernate-64-next-snapshots>
<hibernate-63-next-snapshots>6.3.2-SNAPSHOT</hibernate-63-next-snapshots>
<hibernate>6.4.0.Final</hibernate>
<hibernate-64-next-snapshots>6.4.1-SNAPSHOT</hibernate-64-next-snapshots>
<hsqldb>2.7.1</hsqldb>
<h2>2.2.220</h2>
<jsqlparser>4.5</jsqlparser>
Expand Down Expand Up @@ -70,21 +69,6 @@
</repository>
</repositories>
</profile>
<profile>
<id>hibernate-63-next</id>
<properties>
<hibernate>${hibernate-63-next-snapshots}</hibernate>
</properties>
<repositories>
<repository>
<id>sonatype-oss</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
<releases>
<enabled>false</enabled>
</releases>
</repository>
</repositories>
</profile>
<profile>
<id>all-dbs</id>
<build>
Expand Down

0 comments on commit 9dc8793

Please sign in to comment.