mirror of
https://github.com/datahub-project/datahub.git
synced 2025-06-27 05:03:31 +00:00
30 lines
1.3 KiB
Groovy
30 lines
1.3 KiB
Groovy
buildscript {
|
|
apply from: '../repositories.gradle'
|
|
}
|
|
|
|
plugins {
|
|
id 'java'
|
|
}
|
|
|
|
dependencies {
|
|
/**
|
|
* Forked version of abandoned repository: https://github.com/fge/json-schema-avro
|
|
* Maintainer last active 2014, we maintain an active fork of this repository to utilize mapping Avro schemas to Json Schemas,
|
|
* repository is as close to official library for this as you can get. Original maintainer is one of the authors of Json Schema spec.
|
|
* Other companies are also separately maintaining forks (like: https://github.com/java-json-tools/json-schema-avro).
|
|
* We have built several customizations on top of it for various bug fixes, especially around union scheams
|
|
*/
|
|
implementation('io.acryl:json-schema-avro:0.2.3') {
|
|
exclude group: 'com.fasterxml.jackson.core', module: 'jackson-databind'
|
|
exclude group: 'com.google.guava', module: 'guava'
|
|
}
|
|
implementation 'com.github.java-json-tools:json-schema-validator:2.2.14'
|
|
implementation 'com.google.guava:guava:32.1.2-jre'
|
|
implementation 'com.fasterxml.jackson.core:jackson-databind:2.13.5'
|
|
implementation 'com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.13.5'
|
|
implementation 'commons-io:commons-io:2.17.0'
|
|
|
|
compileOnly 'org.projectlombok:lombok:1.18.30'
|
|
annotationProcessor 'org.projectlombok:lombok:1.18.30'
|
|
}
|