datahub/buildSrc/build.gradle
2023-02-20 11:32:05 +05:30

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'
}