-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathbuild.gradle
More file actions
14 lines (11 loc) · 797 Bytes
/
build.gradle
File metadata and controls
14 lines (11 loc) · 797 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
dependencies {
implementation project(':inversion-core-api')
implementation group: "com.zaxxer", name: "HikariCP", version: "${hikariVersion}"
implementation group: "org.apache.commons", name: "commons-collections4", version: "${commonsCollections4Version}"
testImplementation group: "com.h2database", name: "h2", version: "${h2Version}"
testImplementation group: "mysql", name: "mysql-connector-java", version: "${mysqlVersion}"
testImplementation group: "org.postgresql", name: "postgresql", version: "${postgresVersion}"
testImplementation group: "com.microsoft.sqlserver", name: "mssql-jdbc", version: "${mssqlVersion}"
testImplementation project(':inversion-core-api').sourceSets.test.output
testImplementation project(':inversion-module-spring-boot')
}