2023-12-15 13:28:33 -06:00
|
|
|
plugins {
|
|
|
|
id 'pegasus'
|
|
|
|
}
|
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 {
|
|
|
|
dataModel project(':metadata-models')
|
|
|
|
dataModel spec.product.pegasus.restliCommon
|
|
|
|
|
|
|
|
dataTemplateCompile spec.product.pegasus.data
|
|
|
|
|
|
|
|
restClientCompile spec.product.pegasus.d2
|
|
|
|
restClientCompile spec.product.pegasus.restliClient
|
2023-11-06 19:51:20 -06:00
|
|
|
|
|
|
|
constraints {
|
|
|
|
restClientCompile(externalDependency.zookeeper) {
|
|
|
|
because("CVE-2023-44981")
|
|
|
|
}
|
2023-11-14 19:00:22 -06:00
|
|
|
restClientCompile(externalDependency.grpcProtobuf) {
|
|
|
|
because("CVE-2023-1428, CVE-2023-32731")
|
|
|
|
}
|
2023-11-06 19:51:20 -06:00
|
|
|
}
|
2023-12-15 13:28:33 -06:00
|
|
|
}
|