mirror of
https://github.com/datahub-project/datahub.git
synced 2025-08-31 12:52:13 +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.
23 lines
714 B
Groovy
23 lines
714 B
Groovy
apply plugin: 'java'
|
|
|
|
dependencies {
|
|
compile externalDependency.avro_1_7
|
|
compile externalDependency.commonsLang
|
|
compile externalDependency.elasticSearchRest
|
|
compile externalDependency.gmaDaoApi
|
|
compile externalDependency.httpClient
|
|
compile externalDependency.logbackClassic
|
|
compile externalDependency.neo4jJavaDriver
|
|
compile spec.product.pegasus.restliClient
|
|
compile spec.product.pegasus.restliCommon
|
|
|
|
compile project(':li-utils')
|
|
compile project(':metadata-events:mxe-avro-1.7')
|
|
compile project(':metadata-events:mxe-utils-avro-1.7')
|
|
|
|
compileOnly externalDependency.lombok
|
|
|
|
annotationProcessor externalDependency.lombok
|
|
|
|
testCompile project(':metadata-testing:metadata-test-utils')
|
|
} |