mirror of
https://github.com/datahub-project/datahub.git
synced 2025-11-01 11:19:05 +00:00
20 lines
498 B
Groovy
20 lines
498 B
Groovy
apply plugin: 'pegasus'
|
|
|
|
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
|
|
|
|
constraints {
|
|
restClientCompile(externalDependency.zookeeper) {
|
|
because("CVE-2023-44981")
|
|
}
|
|
restClientCompile(externalDependency.grpcProtobuf) {
|
|
because("CVE-2023-1428, CVE-2023-32731")
|
|
}
|
|
}
|
|
} |