mirror of
https://github.com/datahub-project/datahub.git
synced 2025-06-27 05:03:31 +00:00
25 lines
560 B
Groovy
25 lines
560 B
Groovy
plugins {
|
|
id 'pegasus'
|
|
}
|
|
|
|
apply from: '../../gradle/coverage/java-coverage.gradle'
|
|
|
|
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")
|
|
}
|
|
}
|
|
}
|