2023-12-15 13:28:33 -06:00
|
|
|
plugins {
|
|
|
|
id 'java'
|
|
|
|
}
|
2021-08-20 10:58:07 -07:00
|
|
|
|
2024-12-03 06:57:43 +05:30
|
|
|
apply from: '../../gradle/coverage/java-coverage.gradle'
|
2022-08-01 22:17:08 +05:30
|
|
|
|
|
|
|
compileJava {
|
|
|
|
options.debug = true
|
|
|
|
}
|
|
|
|
|
2021-08-20 10:58:07 -07:00
|
|
|
dependencies {
|
2023-09-01 09:06:01 -05:00
|
|
|
implementation project(path: ':metadata-models')
|
|
|
|
implementation project(path: ':metadata-auth:auth-api')
|
|
|
|
implementation project(path: ':metadata-service:auth-config')
|
|
|
|
implementation project(path: ':metadata-io')
|
|
|
|
|
|
|
|
implementation(externalDependency.mixpanel) {
|
|
|
|
exclude group: 'org.json', module: 'json'
|
|
|
|
}
|
2021-11-22 16:33:14 -08:00
|
|
|
implementation 'io.jsonwebtoken:jjwt-api:0.11.2'
|
|
|
|
runtimeOnly 'io.jsonwebtoken:jjwt-impl:0.11.2',
|
2021-12-14 22:43:38 -08:00
|
|
|
'io.jsonwebtoken:jjwt-jackson:0.11.2'
|
2021-09-02 19:05:13 -07:00
|
|
|
|
2022-12-04 21:57:47 -06:00
|
|
|
implementation externalDependency.slf4jApi
|
|
|
|
compileOnly externalDependency.lombok
|
2021-09-02 19:05:13 -07:00
|
|
|
|
|
|
|
annotationProcessor externalDependency.lombok
|
|
|
|
|
2023-09-01 09:06:01 -05:00
|
|
|
testImplementation externalDependency.mockito
|
2023-09-21 13:01:55 -05:00
|
|
|
testImplementation externalDependency.testng
|
2022-08-01 22:17:08 +05:30
|
|
|
}
|