diff --git a/Jenkinsfile b/Jenkinsfile
index 44241474f9..4ffafd3ea4 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -78,6 +78,27 @@ pipeline {
}
}
}
+ stage("test: hibernate 6.2 (LTS)") {
+ agent {
+ label 'data'
+ }
+ options { timeout(time: 30, unit: 'MINUTES')}
+ environment {
+ ARTIFACTORY = credentials("${p['artifactory.credentials']}")
+ DEVELOCITY_CACHE = credentials("${p['develocity.cache.credentials']}")
+ 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-62 " +
+ "JENKINS_USER_NAME=${p['jenkins.user.name']} " +
+ "ci/test.sh"
+ }
+ }
+ }
+ }
stage("test: java.next (next)") {
agent {
label 'data'
diff --git a/pom.xml b/pom.xml
index 75f16b1827..03e66475a1 100644
--- a/pom.xml
+++ b/pom.xml
@@ -5,7 +5,7 @@