Browse Source

Polishing

See #3239
Original pull request: #3201
pull/3321/head
Mark Paluch 2 years ago
parent
commit
e637bb263c
No known key found for this signature in database
GPG Key ID: 4406B84C1661DCD1
  1. 19
      Jenkinsfile
  2. 19
      pom.xml

19
Jenkinsfile vendored

@ -55,25 +55,6 @@ pipeline { @@ -55,25 +55,6 @@ pipeline {
}
parallel {
stage("test: baseline (hibernate 6.3.x snapshots)") {
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-63-next ci/test.sh'
}
}
}
}
stage("test: baseline (hibernate 6.4.x snapshots)") {
agent {
label 'data'

19
pom.xml

@ -31,8 +31,7 @@ @@ -31,8 +31,7 @@
<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-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>
@ -53,7 +52,6 @@ @@ -53,7 +52,6 @@
<module>spring-data-jpa-distribution</module>
</modules>
<profiles>
<profile>
<id>hibernate-64-next</id>
@ -70,21 +68,6 @@ @@ -70,21 +68,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>

Loading…
Cancel
Save