mirror of
				https://github.com/datahub-project/datahub.git
				synced 2025-11-03 20:27:50 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
		
			502 B
		
	
	
	
		
			Groovy
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			502 B
		
	
	
	
		
			Groovy
		
	
	
	
	
	
apply plugin: 'java'
 | 
						|
 | 
						|
buildscript {
 | 
						|
  apply from: '../repositories.gradle'
 | 
						|
}
 | 
						|
 | 
						|
dependencies {
 | 
						|
  compile('io.acryl:json-schema-avro:0.1.5') {
 | 
						|
    exclude group: 'com.fasterxml.jackson.core', module: 'jackson-databind'
 | 
						|
    exclude group: 'com.google.guava', module: 'guava'
 | 
						|
  }
 | 
						|
  compile 'com.google.guava:guava:27.0.1-jre'
 | 
						|
  compile 'com.fasterxml.jackson.core:jackson-databind:2.13.5'
 | 
						|
  compile 'com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.13.5'
 | 
						|
  compile 'commons-io:commons-io:2.11.0'
 | 
						|
} |