Skip to content

Commit e637bb2

Browse files
committed
Polishing
See #3239 Original pull request: #3201
1 parent 361236a commit e637bb2

File tree

2 files changed

+1
-37
lines changed

2 files changed

+1
-37
lines changed

Jenkinsfile

Lines changed: 0 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -55,25 +55,6 @@ pipeline {
5555
}
5656

5757
parallel {
58-
stage("test: baseline (hibernate 6.3.x snapshots)") {
59-
agent {
60-
label 'data'
61-
}
62-
options { timeout(time: 30, unit: 'MINUTES')}
63-
environment {
64-
ARTIFACTORY = credentials("${p['artifactory.credentials']}")
65-
DEVELOCITY_CACHE = credentials("${p['develocity.cache.credentials']}")
66-
DEVELOCITY_ACCESS_KEY = credentials("${p['develocity.access-key']}")
67-
TESTCONTAINERS_IMAGE_SUBSTITUTOR = 'org.springframework.data.jpa.support.ProxyImageNameSubstitutor'
68-
}
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-
}
7758
stage("test: baseline (hibernate 6.4.x snapshots)") {
7859
agent {
7960
label 'data'

pom.xml

Lines changed: 1 addition & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,7 @@
3131
<eclipselink>3.0.3</eclipselink>
3232
<eclipselink-next>4.0.2</eclipselink-next>
3333
<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>
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>
@@ -53,7 +52,6 @@
5352
<module>spring-data-jpa-distribution</module>
5453
</modules>
5554

56-
5755
<profiles>
5856
<profile>
5957
<id>hibernate-64-next</id>
@@ -70,21 +68,6 @@
7068
</repository>
7169
</repositories>
7270
</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>
8871
<profile>
8972
<id>all-dbs</id>
9073
<build>

0 commit comments

Comments
 (0)