mirror of
https://github.com/datahub-project/datahub.git
synced 2026-01-05 06:16:37 +00:00
Move code to linkedin/datahub-gma. "GMA" (Generalized Metadata Architecture) is the backend of DataHub, and has been moved to its own repository. This deletes the code that was moved and uses jars that GMA publishes to bintray to load it. Note that not all of GMA was moved, but most of it. We may still move more things to the other repository in the future.
15 lines
369 B
Groovy
15 lines
369 B
Groovy
apply plugin: 'pegasus'
|
|
|
|
dependencies {
|
|
compile spec.product.pegasus.data
|
|
compile project(':li-utils')
|
|
dataModel project(':li-utils')
|
|
|
|
testCompile externalDependency.gmaValidators
|
|
testCompile externalDependency.guava
|
|
}
|
|
|
|
mainAvroSchemaJar.dependsOn generateAvroSchema
|
|
|
|
pegasus.main.generationModes = [PegasusGenerationMode.PEGASUS, PegasusGenerationMode.AVRO]
|