2022-06-01 18:39:14 +02:00
|
|
|
dependencyResolutionManagement {
|
|
|
|
versionCatalogs {
|
|
|
|
libs {
|
2023-12-16 21:03:19 +01:00
|
|
|
version('gradle', '8.5')
|
2024-03-25 17:09:36 +01:00
|
|
|
library('mariadb', 'org.mariadb.jdbc', 'mariadb-java-client').version('3.3.3')
|
|
|
|
library('oracle', 'com.oracle.database.jdbc', 'ojdbc11').version('23.3.0.23.09')
|
|
|
|
library('postgresql', 'org.postgresql', 'postgresql').version('42.7.3')
|
2023-12-16 21:03:19 +01:00
|
|
|
}
|
|
|
|
testLibs {
|
2024-03-25 17:09:36 +01:00
|
|
|
version('junit', '5.10.2')
|
2023-10-17 16:32:20 +02:00
|
|
|
version('testcontainers', '1.19.1')
|
2022-06-01 18:39:14 +02:00
|
|
|
library('junit-jupiter-api', 'org.junit.jupiter', 'junit-jupiter-api').versionRef('junit')
|
|
|
|
library('junit-jupiter-params', 'org.junit.jupiter', 'junit-jupiter-params').versionRef('junit')
|
|
|
|
library('junit-jupiter-engine', 'org.junit.jupiter', 'junit-jupiter-engine').versionRef('junit')
|
2023-12-16 21:03:19 +01:00
|
|
|
library('junit-jupiter-platform-launcher', 'org.junit.platform', 'junit-platform-launcher').version('1.10.1')
|
2022-08-05 14:38:28 +02:00
|
|
|
library('hamcrest', 'org.hamcrest', 'hamcrest-library').version('2.2')
|
|
|
|
library('junit4', 'junit', 'junit').version('4.13.2')
|
2022-10-30 01:20:18 +02:00
|
|
|
library('derby', 'org.apache.derby', 'derby').version('10.16.1.1')
|
2022-10-26 23:54:02 +02:00
|
|
|
library('hsqldb', 'org.hsqldb', 'hsqldb').version('2.7.1')
|
2022-10-30 01:20:18 +02:00
|
|
|
library('h2', 'com.h2database', 'h2').version('2.1.214')
|
2023-04-28 11:05:24 +02:00
|
|
|
library('mockito-core', 'org.mockito', 'mockito-core').version('5.3.1')
|
2022-06-01 18:39:14 +02:00
|
|
|
library('testcontainers', 'org.testcontainers', 'testcontainers').versionRef('testcontainers')
|
|
|
|
library('testcontainers-junit-jupiter', 'org.testcontainers', 'junit-jupiter').versionRef('testcontainers')
|
2022-10-30 01:20:18 +02:00
|
|
|
library('testcontainers-mariadb', 'org.testcontainers', 'mariadb').versionRef('testcontainers')
|
2022-06-01 18:39:14 +02:00
|
|
|
library('testcontainers-oracle-xe', 'org.testcontainers', 'oracle-xe').versionRef('testcontainers')
|
2022-10-30 01:20:18 +02:00
|
|
|
library('testcontainers-postgresql', 'org.testcontainers', 'postgresql').versionRef('testcontainers')
|
2022-06-01 18:39:14 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-02-10 18:41:26 +01:00
|
|
|
include 'jdbc-connection-pool'
|
|
|
|
include 'jdbc-query'
|
2022-10-30 01:20:18 +02:00
|
|
|
include 'jdbc-test'
|
|
|
|
include 'jdbc-mariadb'
|
|
|
|
include 'jdbc-oracle'
|
|
|
|
include 'jdbc-postgresql'
|
2022-10-30 11:42:00 +01:00
|
|
|
include 'jdbc-sqlserver'
|