File tree Expand file tree Collapse file tree 2 files changed +34
-0
lines changed Expand file tree Collapse file tree 2 files changed +34
-0
lines changed Original file line number Diff line number Diff line change @@ -78,6 +78,27 @@ pipeline {
78
78
}
79
79
}
80
80
}
81
+ stage(" test: hibernate 6.2 (LTS)" ) {
82
+ agent {
83
+ label ' data'
84
+ }
85
+ options { timeout(time : 30 , unit : ' MINUTES' )}
86
+ environment {
87
+ ARTIFACTORY = credentials(" ${ p['artifactory.credentials']} " )
88
+ DEVELOCITY_CACHE = credentials(" ${ p['develocity.cache.credentials']} " )
89
+ DEVELOCITY_ACCESS_KEY = credentials(" ${ p['develocity.access-key']} " )
90
+ TESTCONTAINERS_IMAGE_SUBSTITUTOR = ' org.springframework.data.jpa.support.ProxyImageNameSubstitutor'
91
+ }
92
+ steps {
93
+ script {
94
+ docker. image(p[' docker.java.next.image' ]). inside(p[' docker.java.inside.docker' ]) {
95
+ sh " PROFILE=all-dbs,hibernate-62 " +
96
+ " JENKINS_USER_NAME=${ p['jenkins.user.name']} " +
97
+ " ci/test.sh"
98
+ }
99
+ }
100
+ }
101
+ }
81
102
stage(" test: java.next (next)" ) {
82
103
agent {
83
104
label ' data'
Original file line number Diff line number Diff line change 32
32
<eclipselink-next >4.0.2</eclipselink-next >
33
33
<hibernate >6.4.4.Final</hibernate >
34
34
<hibernate-64-next-snapshots >6.4.5-SNAPSHOT</hibernate-64-next-snapshots >
35
+ <hibernate-62 >6.2.22.Final</hibernate-62 >
35
36
<hsqldb >2.7.1</hsqldb >
36
37
<h2 >2.2.220</h2 >
37
38
<jsqlparser >4.5</jsqlparser >
68
69
</repository >
69
70
</repositories >
70
71
</profile >
72
+ <profile >
73
+ <id >hibernate-62</id >
74
+ <properties >
75
+ <hibernate >${hibernate-62}</hibernate >
76
+ </properties >
77
+ <dependencies >
78
+ <dependency >
79
+ <groupId >jakarta.persistence</groupId >
80
+ <artifactId >jakarta.persistence-api</artifactId >
81
+ </dependency >
82
+ </dependencies >
83
+ </profile >
71
84
<profile >
72
85
<id >all-dbs</id >
73
86
<build >
You can’t perform that action at this time.
0 commit comments