2024-03-23 06:15:36 -05:00
|
|
|
plugins {
|
|
|
|
|
id 'java-library'
|
|
|
|
|
}
|
|
|
|
|
|
2024-12-03 06:57:43 +05:30
|
|
|
apply from: '../../gradle/coverage/java-coverage.gradle'
|
|
|
|
|
|
2024-03-23 06:15:36 -05:00
|
|
|
dependencies {
|
|
|
|
|
api project(path: ':metadata-service:restli-api', configuration: 'restClient')
|
|
|
|
|
api project(':metadata-operation-context')
|
|
|
|
|
implementation project(':metadata-service:configuration')
|
2025-07-08 12:40:24 -05:00
|
|
|
implementation project(':metadata-utils')
|
2024-03-23 06:15:36 -05:00
|
|
|
|
|
|
|
|
implementation externalDependency.caffeine
|
|
|
|
|
implementation externalDependency.slf4jApi
|
|
|
|
|
compileOnly externalDependency.lombok
|
|
|
|
|
annotationProcessor externalDependency.lombok
|
|
|
|
|
}
|