datahub/gms/impl/build.gradle
Jyoti Wadhwani 5fb3c97315
metadata-models 54.0.1 -> 58.0.1 (#1610)
Changes include:
Remove all keys that can be moved back to respective GMS
Add support for <, <=, >, >= conditions for the filter API
Update Conditions model for <, <=, >, >= conditions

MP_VERSION=metadata-models:58.0.1
MP_VERSION=wherehows-samza:1.0.56
2020-03-26 21:53:29 -07:00

31 lines
972 B
Groovy

apply plugin: 'java'
apply plugin: 'pegasus'
dependencies {
compile project(':gms:api')
compile project(path: ':gms:api', configuration: 'dataTemplate')
compile project(':li-utils')
compile project(':metadata-models')
compile project(':metadata-dao')
compile project(path: ':metadata-dao', configuration: 'dataTemplate')
compile project(':metadata-dao-impl:ebean-dao')
compile project(':metadata-dao-impl:elasticsearch-dao')
compile project(':metadata-dao-impl:neo4j-dao')
compile project(':metadata-testing:metadata-test-utils')
compile spec.product.pegasus.restliServer
compile project(':metadata-restli-resource')
compileOnly externalDependency.lombok
testCompile externalDependency.parseqTest
testCompile externalDependency.mockito
testCompile externalDependency.testng
}
// Generate IDLs
pegasus.main.idlOptions.addIdlItem([
'com.linkedin.dataset.rest',
'com.linkedin.identity.rest'
])
ext.apiProject = project(':gms:api')