2019-08-31 20:51:14 -07:00
|
|
|
apply plugin: 'java'
|
|
|
|
|
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
|
|
|
implementation project(':metadata-events:mxe-avro')
|
2023-09-01 09:06:01 -05:00
|
|
|
implementation project(':metadata-events:mxe-registration')
|
2023-10-18 13:45:46 -05:00
|
|
|
implementation project(':metadata-events:mxe-utils-avro')
|
2023-09-01 09:06:01 -05:00
|
|
|
implementation project(':entity-registry')
|
|
|
|
implementation project(':metadata-io')
|
2021-06-03 13:24:33 -07:00
|
|
|
|
2023-09-01 09:06:01 -05:00
|
|
|
implementation externalDependency.kafkaClients
|
|
|
|
implementation externalDependency.springBeans
|
|
|
|
implementation externalDependency.springContext
|
|
|
|
implementation externalDependency.opentelemetryAnnotations
|
2019-08-31 20:51:14 -07:00
|
|
|
|
2022-12-04 21:57:47 -06:00
|
|
|
implementation externalDependency.slf4jApi
|
2019-08-31 20:51:14 -07:00
|
|
|
compileOnly externalDependency.lombok
|
|
|
|
|
2020-02-10 00:35:47 -08:00
|
|
|
annotationProcessor externalDependency.lombok
|
|
|
|
|
2023-09-01 09:06:01 -05:00
|
|
|
testImplementation externalDependency.mockito
|
2024-05-31 15:53:02 -05:00
|
|
|
testImplementation externalDependency.testng
|
2022-11-30 17:05:01 -06:00
|
|
|
|
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
|
|
|
}
|
2023-08-17 00:26:28 -05:00
|
|
|
implementation(externalDependency.snappy) {
|
|
|
|
because("previous versions are vulnerable to CVE-2023-34453 through CVE-2023-34455")
|
|
|
|
}
|
2021-12-10 20:07:55 +02:00
|
|
|
}
|
2019-08-31 20:51:14 -07:00
|
|
|
}
|