Upgrade Hibernate 6.3 build profile to enable integration builds against latest snapshots.

Related ticket: #3146.
This commit is contained in:
Oliver Drotbohm
2023-09-08 08:04:19 +02:00
parent 3b8556bcf4
commit 895d60c969
2 changed files with 15 additions and 24 deletions

22
Jenkinsfile vendored
View File

@@ -54,7 +54,7 @@ pipeline {
}
parallel {
stage("test: java.next (hibernate 6.1)") {
stage("test: baseline (hibernate 6.3.x snapshots)") {
agent {
label 'data'
}
@@ -66,25 +66,7 @@ pipeline {
steps {
script {
docker.image(p['docker.java.next.image']).inside(p['docker.java.inside.docker']) {
sh 'PROFILE=all-dbs,hibernate-61 ci/test.sh'
sh "ci/clean.sh"
}
}
}
}
stage("test: baseline (hibernate 6.3)") {
agent {
label 'data'
}
options { timeout(time: 30, unit: 'MINUTES')}
environment {
ARTIFACTORY = credentials("${p['artifactory.credentials']}")
TESTCONTAINERS_IMAGE_SUBSTITUTOR = 'org.springframework.data.jpa.support.ProxyImageNameSubstitutor'
}
steps {
script {
docker.image(p['docker.java.main.image']).inside(p['docker.java.inside.docker']) {
sh 'PROFILE=all-dbs,hibernate-63 ci/test.sh'
sh 'PROFILE=all-dbs,hibernate-63-next ci/test.sh'
sh "ci/clean.sh"
}
}

17
pom.xml
View File

@@ -53,16 +53,25 @@
<profiles>
<profile>
<id>hibernate-61</id>
<id>hibernate-63</id>
<properties>
<hibernate>6.1.7.Final</hibernate>
<hibernate>6.3.0.Final</hibernate>
</properties>
</profile>
<profile>
<id>hibernate-63</id>
<id>hibernate-63-next</id>
<properties>
<hibernate>6.3.0.CR1</hibernate>
<hibernate>6.3.1-SNAPSHOT</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>