File tree 1 file changed +32
-4
lines changed
1 file changed +32
-4
lines changed 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>
119
120
<!-- Reproducible Builds -->
120
121
<project .build.outputTimestamp>1684514485</project .build.outputTimestamp>
121
122
122
- <!-- TODO: Remove this after mybatis-parent 40 -->
123
- <jacoco .plugin>0.8.11</jacoco .plugin>
124
-
125
123
<!-- Set byte buddy to experimental -->
126
124
<net .bytebuddy.experimental>true</net .bytebuddy.experimental>
127
125
</properties >
167
165
<dependency >
168
166
<groupId >org.apache.derby</groupId >
169
167
<artifactId >derby</artifactId >
170
- <version >10.16.1.1 </version >
168
+ <version >${derby.version} </version >
171
169
<scope >test</scope >
172
170
</dependency >
173
171
460
458
</plugin >
461
459
</plugins >
462
460
</build >
461
+
462
+ <profiles >
463
+ <profile >
464
+ <id >pre16</id >
465
+ <activation >
466
+ <jdk >(,16)</jdk >
467
+ </activation >
468
+ <properties >
469
+ <derby .version>10.15.2.0</derby .version>
470
+ </properties >
471
+ </profile >
472
+ <profile >
473
+ <id >17</id >
474
+ <activation >
475
+ <jdk >[17,)</jdk >
476
+ </activation >
477
+ <properties >
478
+ <derby .version>10.16.1.1</derby .version>
479
+ </properties >
480
+ </profile >
481
+ <profile >
482
+ <id >19</id >
483
+ <activation >
484
+ <jdk >[19,)</jdk >
485
+ </activation >
486
+ <properties >
487
+ <derby .version>10.17.1.0</derby .version>
488
+ </properties >
489
+ </profile >
490
+ </profiles >
463
491
</project >
You can’t perform that action at this time.
0 commit comments