2019-08-31 20:51:14 -07:00

25 lines
669 B
Groovy

apply plugin: 'java'
dependencies {
compile project(':metadata-dao')
compile externalDependency.elasticSearchRest
compile externalDependency.guava
compile externalDependency.lombok
compile externalDependency.commonsIo
compile externalDependency.commonsLang
compile externalDependency.jacksonCore
compile externalDependency.jacksonDataBind
testCompile project(':metadata-test-utils')
testCompile externalDependency.testng
}
tasks.withType(Test) {
useTestNG() {
excludeGroups 'metricSearchIntegration'
excludeGroups 'featureSearchIntegration'
excludeGroups 'browseIntegration'
excludeGroups 'inchartsChartSearchIntegration'
}
}