mirror of
https://github.com/datahub-project/datahub.git
synced 2025-07-24 10:00:07 +00:00
16 lines
504 B
Groovy
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'
|
|
} |