File tree Expand file tree Collapse file tree
src/test/java/org/qstd/test Expand file tree Collapse file tree Original file line number Diff line number Diff line change 3535 <license .dir>${basedir} </license .dir>
3636 <currentYear >2022</currentYear >
3737 <project .build.outputTimestamp>10</project .build.outputTimestamp>
38- <testcontainers .version>1.17.3 </testcontainers .version>
38+ <testcontainers .version>1.21.4 </testcontainers .version>
3939 </properties >
4040
4141 <dependencyManagement >
259259 </plugin >
260260 <plugin >
261261 <artifactId >maven-enforcer-plugin</artifactId >
262- <version >1.4.1 </version >
262+ <version >3.6.2 </version >
263263 <executions >
264264 <execution >
265265 <id >enforce-bytecode-version</id >
284284 <dependency >
285285 <groupId >org.codehaus.mojo</groupId >
286286 <artifactId >extra-enforcer-rules</artifactId >
287- <version >1.2 </version >
287+ <version >1.12.0 </version >
288288 </dependency >
289289 </dependencies >
290290 </plugin >
Original file line number Diff line number Diff line change 2828public class MSSQLServerTest {
2929
3030 private static final MSSQLServerContainer MS_SQL_SERVER =
31- new MSSQLServerContainer ("mcr.microsoft.com/mssql/server:2019-CU9-ubuntu-16.04" )
32- .acceptLicense ();
31+ new MSSQLServerContainer <>("mcr.microsoft.com/mssql/server:2022-latest" ).acceptLicense ();
3332
3433 private static DataSource DATA_SOURCE ;
3534
Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ public class MariaDBSlowTest {
3030 private static final String DB_PASSWORD = "pwd" ;
3131
3232 private static final MariaDBContainer MARIA_DB_CONTAINER =
33- new MariaDBContainer <>("mariadb:10.5.2 " )
33+ new MariaDBContainer <>("mariadb:11.4 " )
3434 .withDatabaseName ("mariadb" )
3535 .withUsername (DB_USER_NAME )
3636 .withPassword (DB_PASSWORD );
Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ public class MariaDBTest {
3232 private static final String DB_PASSWORD = "pwd" ;
3333
3434 private static final MariaDBContainer MARIA_DB_CONTAINER =
35- new MariaDBContainer <>("mariadb:10.5.2 " )
35+ new MariaDBContainer <>("mariadb:11.4 " )
3636 .withDatabaseName ("mariadb" )
3737 .withUsername (DB_USER_NAME )
3838 .withPassword (DB_PASSWORD );
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ public class OracleTest {
3131 private static DataSource DATA_SOURCE ;
3232
3333 private static final OracleContainer ORACLE_CONTAINER =
34- new OracleContainer ("gvenzl/oracle-xe:18 -slim" ).withEnv ("ORACLE_PASSWORD" , "oracle" );
34+ new OracleContainer ("gvenzl/oracle-xe:21.3.0 -slim" ).withEnv ("ORACLE_PASSWORD" , "oracle" );
3535
3636 private static SqlExecutor SQL_EXECUTOR ;
3737
Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ public class PostgreSqlTest {
3333 private static final String DB_PASSWORD = "pwd" ;
3434
3535 private static final PostgreSQLContainer POSTGRESQL_CONTAINER =
36- new PostgreSQLContainer <>("postgres:12.3 " )
36+ new PostgreSQLContainer <>("postgres:17 " )
3737 .withDatabaseName ("postgresql" )
3838 .withUsername (DB_USER_NAME )
3939 .withPassword (DB_PASSWORD );
You can’t perform that action at this time.
0 commit comments