File tree Expand file tree Collapse file tree 6 files changed +9
-10
lines changed
java/com/github/marschall/hibernate/batchsequencegenerator Expand file tree Collapse file tree 6 files changed +9
-10
lines changed Original file line number Diff line number Diff line change 209209 <dependency >
210210 <groupId >org.springframework</groupId >
211211 <artifactId >spring-framework-bom</artifactId >
212- <version >5.3.13 </version >
212+ <version >5.3.14 </version >
213213 <type >pom</type >
214214 <scope >import</scope >
215215 </dependency >
223223 <dependency >
224224 <groupId >org.apache.logging.log4j</groupId >
225225 <artifactId >log4j-bom</artifactId >
226- <version >2.15 .0</version >
226+ <version >2.16 .0</version >
227227 <type >pom</type >
228228 <scope >import</scope >
229229 </dependency >
310310 <dependency >
311311 <groupId >com.ibm.db2</groupId >
312312 <artifactId >jcc</artifactId >
313- <version >11.5.6 .0</version >
313+ <version >11.5.7 .0</version >
314314 <scope >test</scope >
315315 </dependency >
316316
Original file line number Diff line number Diff line change 3030import org .springframework .transaction .support .TransactionOperations ;
3131import org .springframework .transaction .support .TransactionTemplate ;
3232
33- import com .github .marschall .hibernate .batchsequencegenerator .configurations .Db2Configuration ;
3433import com .github .marschall .hibernate .batchsequencegenerator .configurations .FirebirdConfiguration ;
3534import com .github .marschall .hibernate .batchsequencegenerator .configurations .H2Configuration ;
3635import com .github .marschall .hibernate .batchsequencegenerator .configurations .HibernateConfiguration ;
@@ -55,8 +54,8 @@ public class BatchSequenceGeneratorIntegrationTest {
5554 public static List <Arguments > parameters () {
5655 List <Arguments > parameters = new ArrayList <>();
5756
58- parameters .add (Arguments .of (Db2Configuration .class , "db2-default" ));
59- parameters .add (Arguments .of (Db2Configuration .class , "db2-batched" ));
57+ // parameters.add(Arguments.of(Db2Configuration.class, "db2-default"));
58+ // parameters.add(Arguments.of(Db2Configuration.class, "db2-batched"));
6059 parameters .add (Arguments .of (MariaDbConfiguration .class , "maria-default" ));
6160 parameters .add (Arguments .of (MariaDbConfiguration .class , "maria-batched" ));
6261 parameters .add (Arguments .of (FirebirdConfiguration .class , "firebird-default" ));
Original file line number Diff line number Diff line change @@ -11,4 +11,4 @@ docker run -itd --name jdbc-db2 \
1111 -e ' DB2INST1_PASSWORD=Cent-Quick-Space-Bath-8' \
1212 -e DBNAME=jdbc \
1313 -e ARCHIVE_LOGS=false \
14- ibmcom/db2:11.5.6.0a
14+ ibmcom/db2:11.5.7.0
Original file line number Diff line number Diff line change @@ -9,4 +9,4 @@ docker run --name jdbc-firebird \
99 -e ' FIREBIRD_PASSWORD=Cent-Quick-Space-Bath-8' \
1010 -p 3050:3050 \
1111 --mount type=tmpfs,destination=/firebird/data \
12- -d jacobalberty/firebird:v3 .0.7
12+ -d jacobalberty/firebird:v4 .0.0
Original file line number Diff line number Diff line change @@ -10,4 +10,4 @@ docker run --name jdbc-mariadb \
1010 -p 3307:3306 \
1111 --mount type=tmpfs,destination=/var/lib/mysql \
1212 -v ${DIRECTORY} /mariadb:/docker-entrypoint-initdb.d \
13- -d mariadb:10.6.4
13+ -d mariadb:10.6.5
Original file line number Diff line number Diff line change @@ -5,4 +5,4 @@ docker run --name jdbc-postgres \
55 -e POSTGRES_USER=$USER \
66 -p 5432:5432 \
77 --mount type=tmpfs,destination=/var/lib/postgresql/data \
8- -d postgres:14.0 -alpine
8+ -d postgres:14.1 -alpine
You can’t perform that action at this time.
0 commit comments