2023-12-15 13:28:33 -06:00
|
|
|
plugins {
|
|
|
|
id 'pegasus'
|
|
|
|
id 'java-library'
|
|
|
|
}
|
2019-08-31 20:51:14 -07:00
|
|
|
|
2024-12-03 06:57:43 +05:30
|
|
|
apply from: '../../gradle/coverage/java-coverage.gradle'
|
|
|
|
|
2019-08-31 20:51:14 -07:00
|
|
|
dependencies {
|
2023-09-01 09:06:01 -05:00
|
|
|
api project(':metadata-service:restli-api')
|
|
|
|
api project(':metadata-auth:auth-api')
|
|
|
|
api project(path: ':metadata-service:restli-api', configuration: 'restClient')
|
|
|
|
api project(':metadata-events:mxe-schemas')
|
|
|
|
api project(':metadata-utils')
|
2024-02-28 16:57:26 -06:00
|
|
|
api project(':metadata-operation-context')
|
2024-03-23 06:15:36 -05:00
|
|
|
api project(':metadata-service:restli-client-api')
|
2023-09-21 22:00:14 -05:00
|
|
|
implementation project(':metadata-service:configuration')
|
2019-11-19 02:26:51 -08:00
|
|
|
|
2023-11-16 18:39:36 -06:00
|
|
|
implementation externalDependency.caffeine
|
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
|
2019-11-19 02:26:51 -08:00
|
|
|
|
2023-09-01 09:06:01 -05:00
|
|
|
implementation spec.product.pegasus.restliClient
|
2023-06-06 09:50:08 -05:00
|
|
|
|
2024-03-27 14:34:20 -05:00
|
|
|
|
2023-09-01 09:06:01 -05:00
|
|
|
testImplementation externalDependency.mockito
|
|
|
|
testImplementation externalDependency.testng
|
2024-03-27 14:34:20 -05:00
|
|
|
testImplementation spec.product.pegasus.restliTestUtils
|
2019-08-31 20:51:14 -07:00
|
|
|
}
|