mirror of
				https://github.com/datahub-project/datahub.git
				synced 2025-10-30 18:26:58 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			25 lines
		
	
	
		
			669 B
		
	
	
	
		
			Groovy
		
	
	
	
	
	
			
		
		
	
	
			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'
 | |
|   }
 | |
| } | 
