-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathdependencies.gradle
21 lines (17 loc) · 973 Bytes
/
dependencies.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
dependencies {
implementation "io.micronaut:micronaut-http-client"
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
testImplementation group: 'uk.ac.ox.softeng.maurodatamapper', name: 'mdm-plugin-authentication-basic', version: mdmCoreVersion
testImplementation "org.jsoup:jsoup:$jsoupVersion"
implementation group: 'com.auth0', name: 'java-jwt', version: '4.4.0'
implementation group: 'com.auth0', name: 'jwks-rsa', version: '0.22.1'
// implementation group: 'com.auth0', name: 'auth0', version: '1.31.0'
// 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'
}