diff --git a/Jenkinsfile b/Jenkinsfile
index f87caaa0aa..a088fae34e 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -58,50 +58,6 @@ pipeline {
}
parallel {
- stage("test: hibernate 6.2 (LTS)") {
- agent {
- label 'data'
- }
- options { timeout(time: 30, unit: 'MINUTES')}
- environment {
- ARTIFACTORY = credentials("${p['artifactory.credentials']}")
- DEVELOCITY_ACCESS_KEY = credentials("${p['develocity.access-key']}")
- TESTCONTAINERS_IMAGE_SUBSTITUTOR = 'org.springframework.data.jpa.support.ProxyImageNameSubstitutor'
- }
- steps {
- script {
- docker.withRegistry(p['docker.proxy.registry'], p['docker.proxy.credentials']) {
- 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: baseline (hibernate 6.6 snapshots)") {
- agent {
- label 'data'
- }
- options { timeout(time: 30, unit: 'MINUTES')}
- environment {
- ARTIFACTORY = credentials("${p['artifactory.credentials']}")
- DEVELOCITY_ACCESS_KEY = credentials("${p['develocity.access-key']}")
- TESTCONTAINERS_IMAGE_SUBSTITUTOR = 'org.springframework.data.jpa.support.ProxyImageNameSubstitutor'
- }
- steps {
- script {
- docker.withRegistry(p['docker.proxy.registry'], p['docker.proxy.credentials']) {
- docker.image(p['docker.java.next.image']).inside(p['docker.java.inside.docker']) {
- sh "PROFILE=all-dbs,hibernate-66-snapshots " +
- "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 7afef37f2a..30573870ad 100755
--- a/pom.xml
+++ b/pom.xml
@@ -30,10 +30,7 @@