datahub/buildSrc/build.gradle
2022-12-01 16:43:15 -06:00

16 lines
504 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.4.2'
compile 'com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.13.4'
compile 'commons-io:commons-io:2.11.0'
}