File tree Expand file tree Collapse file tree 2 files changed +33
-2
lines changed Expand file tree Collapse file tree 2 files changed +33
-2
lines changed Original file line number Diff line number Diff line change 8
8
strategy :
9
9
matrix :
10
10
os : [ubuntu-latest, macos-latest, windows-latest]
11
- java : [17, 21, 22-ea]
11
+ java : [11, 17, 21, 22-ea]
12
12
distribution : ['temurin']
13
13
fail-fast : false
14
14
max-parallel : 4
Original file line number Diff line number Diff line change 109
109
<java .version>17</java .version>
110
110
<java .release.version>17</java .release.version>
111
111
112
+ <derby .version>10.17.1.0</derby .version>
112
113
<mybatis .version>3.5.14</mybatis .version>
113
114
<spring .version>6.0.13</spring .version>
114
115
<spring-batch .version>5.0.3</spring-batch .version>
167
168
<dependency >
168
169
<groupId >org.apache.derby</groupId >
169
170
<artifactId >derby</artifactId >
170
- <version >10.16.1.1 </version >
171
+ <version >${derby.version} </version >
171
172
<scope >test</scope >
172
173
</dependency >
173
174
460
461
</plugin >
461
462
</plugins >
462
463
</build >
464
+
465
+ <profiles >
466
+ <profile >
467
+ <id >pre16</id >
468
+ <activation >
469
+ <jdk >(,16)</jdk >
470
+ </activation >
471
+ <properties >
472
+ <derby .version>10.15.2.0</derby .version>
473
+ </properties >
474
+ </profile >
475
+ <profile >
476
+ <id >17</id >
477
+ <activation >
478
+ <jdk >[17,)</jdk >
479
+ </activation >
480
+ <properties >
481
+ <derby .version>10.16.1.1</derby .version>
482
+ </properties >
483
+ </profile >
484
+ <profile >
485
+ <id >19</id >
486
+ <activation >
487
+ <jdk >[19,)</jdk >
488
+ </activation >
489
+ <properties >
490
+ <derby .version>10.17.1.0</derby .version>
491
+ </properties >
492
+ </profile >
493
+ </profiles >
463
494
</project >
You can’t perform that action at this time.
0 commit comments