2023-12-15 13:28:33 -06:00
|
|
|
plugins {
|
|
|
|
id 'java-library'
|
2024-01-23 17:49:23 -06:00
|
|
|
id 'pegasus'
|
2023-12-15 13:28:33 -06:00
|
|
|
}
|
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-10-18 13:45:46 -05:00
|
|
|
api externalDependency.avro
|
2023-09-01 09:06:01 -05:00
|
|
|
implementation externalDependency.commonsLang
|
|
|
|
api externalDependency.dropwizardMetricsCore
|
|
|
|
implementation externalDependency.dropwizardMetricsJmx
|
2025-01-29 11:30:44 -06:00
|
|
|
implementation externalDependency.opentelemetrySdk
|
2023-09-01 09:06:01 -05:00
|
|
|
api externalDependency.elasticSearchRest
|
|
|
|
implementation externalDependency.httpClient
|
|
|
|
api externalDependency.neo4jJavaDriver
|
|
|
|
api externalDependency.json
|
|
|
|
|
|
|
|
implementation spec.product.pegasus.restliClient
|
|
|
|
implementation spec.product.pegasus.restliCommon
|
|
|
|
implementation spec.product.pegasus.restliServer
|
|
|
|
|
|
|
|
api project(':li-utils')
|
|
|
|
api project(':entity-registry')
|
2023-10-18 13:45:46 -05:00
|
|
|
api project(':metadata-events:mxe-avro')
|
|
|
|
api project(':metadata-events:mxe-utils-avro')
|
2019-08-31 20:51:14 -07:00
|
|
|
|
2022-12-04 21:57:47 -06:00
|
|
|
implementation externalDependency.slf4jApi
|
2019-10-02 11:08:52 -07:00
|
|
|
compileOnly externalDependency.lombok
|
2025-01-10 00:45:09 +05:30
|
|
|
runtimeOnly externalDependency.javaxMail
|
2019-08-31 20:51:14 -07:00
|
|
|
|
2020-02-10 00:35:47 -08:00
|
|
|
annotationProcessor externalDependency.lombok
|
|
|
|
|
2023-09-01 09:06:01 -05:00
|
|
|
testImplementation project(':test-models')
|
|
|
|
testImplementation project(path: ':test-models', configuration: 'testDataTemplate')
|
2023-09-21 13:01:55 -05:00
|
|
|
testImplementation externalDependency.testng
|
2025-02-24 06:30:45 -06:00
|
|
|
testImplementation externalDependency.mockito
|
|
|
|
testImplementation externalDependency.mockitoInline
|
2025-02-13 05:47:25 -06:00
|
|
|
testImplementation project(':metadata-operation-context')
|
2021-12-10 20:07:55 +02:00
|
|
|
|
|
|
|
constraints {
|
2022-11-30 17:05:01 -06:00
|
|
|
implementation(externalDependency.log4jCore) {
|
2021-12-20 22:55:22 +08:00
|
|
|
because("previous versions are vulnerable to CVE-2021-45105")
|
2021-12-10 20:07:55 +02:00
|
|
|
}
|
2022-11-30 17:05:01 -06:00
|
|
|
implementation(externalDependency.log4jApi) {
|
2021-12-20 22:55:22 +08:00
|
|
|
because("previous versions are vulnerable to CVE-2021-45105")
|
2021-12-10 20:07:55 +02:00
|
|
|
}
|
2025-01-10 00:45:09 +05:30
|
|
|
implementation(externalDependency.javaxMail) {
|
|
|
|
because("previous versions are vulnerable")
|
|
|
|
}
|
2021-12-10 20:07:55 +02:00
|
|
|
}
|
2023-02-07 16:41:39 +05:30
|
|
|
implementation externalDependency.logbackClassic
|
2022-02-16 15:01:22 -08:00
|
|
|
|
2019-08-31 20:51:14 -07:00
|
|
|
}
|