mirror of
https://github.com/datahub-project/datahub.git
synced 2025-12-28 10:28:22 +00:00
* Issue #1590: Gradle build fails when run in parallel - add dependency on avro schema generation to metadata models jar generation * Issue #1590: Adding processResource dependencies * Issue #1590: Remove unnecessary gradle tasks Co-authored-by: Ryan Holstien <rholstien@expediagroup.com>
15 lines
368 B
Groovy
15 lines
368 B
Groovy
apply plugin: 'pegasus'
|
|
|
|
dependencies {
|
|
compile spec.product.pegasus.data
|
|
compile project(':li-utils')
|
|
dataModel project(':li-utils')
|
|
|
|
testCompile project(':metadata-validators')
|
|
testCompile externalDependency.guava
|
|
}
|
|
|
|
mainAvroSchemaJar.dependsOn generateAvroSchema
|
|
|
|
pegasus.main.generationModes = [PegasusGenerationMode.PEGASUS, PegasusGenerationMode.AVRO]
|