2024-01-23 17:49:23 -06:00
|
|
|
plugins {
|
|
|
|
id 'java'
|
|
|
|
}
|
2022-01-27 10:33:12 -08:00
|
|
|
|
2024-12-03 06:57:43 +05:30
|
|
|
apply from: "../gradle/coverage/java-coverage.gradle"
|
|
|
|
|
2022-01-27 10:33:12 -08:00
|
|
|
dependencies {
|
2023-09-01 09:06:01 -05:00
|
|
|
implementation project(path: ':metadata-models')
|
|
|
|
implementation project(path: ':metadata-io')
|
|
|
|
implementation project(path: ':metadata-service:restli-client')
|
|
|
|
implementation project(':metadata-service:configuration')
|
|
|
|
|
2022-12-04 21:57:47 -06:00
|
|
|
implementation externalDependency.slf4jApi
|
2024-01-23 17:49:23 -06:00
|
|
|
implementation externalDependency.springContext
|
2022-12-04 21:57:47 -06:00
|
|
|
compileOnly externalDependency.lombok
|
2022-01-27 10:33:12 -08:00
|
|
|
annotationProcessor externalDependency.lombok
|
|
|
|
|
2023-09-01 09:06:01 -05:00
|
|
|
testImplementation externalDependency.mockito
|
|
|
|
testImplementation externalDependency.testng
|
2022-01-27 10:33:12 -08:00
|
|
|
|
|
|
|
constraints {
|
2022-11-30 17:05:01 -06:00
|
|
|
implementation(externalDependency.log4jCore) {
|
2022-01-27 10:33:12 -08:00
|
|
|
because("previous versions are vulnerable to CVE-2021-45105")
|
|
|
|
}
|
2022-11-30 17:05:01 -06:00
|
|
|
implementation(externalDependency.log4jApi) {
|
2022-01-27 10:33:12 -08:00
|
|
|
because("previous versions are vulnerable to CVE-2021-45105")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|