-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdependencies.gradle
20 lines (15 loc) · 926 Bytes
/
dependencies.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
dependencies {
if(findProject(':mdm-plugin-database')) implementation project(':mdm-plugin-database')
else implementation group: 'uk.ac.ox.softeng.maurodatamapper.plugins', name: 'mdm-plugin-database', version: mdmPluginDatabaseVersion
implementation group: 'com.microsoft.sqlserver', name: 'mssql-jdbc'//, version: sqlServerJdbcVersion
implementation group: 'net.sourceforge.jtds', name: 'jtds'//, version: jtdsVersion
runtimeOnly "io.methvin:directory-watcher", {
exclude group: 'com.google.guava', module: 'guava'
}
testImplementation group: 'uk.ac.ox.softeng.maurodatamapper', name: 'mdm-testing-framework', version: mdmCoreVersion
// Postgres database
runtimeOnly group: 'org.flywaydb', name: 'flyway-core'
runtimeOnly "org.hibernate:hibernate-jcache"
runtimeOnly group: 'org.ehcache', name: 'ehcache'
runtimeOnly group: 'org.postgresql', name: 'postgresql'
}