2022-05-03 19:38:05 -05:00
|
|
|
buildscript {
|
|
|
|
apply from: '../repositories.gradle'
|
|
|
|
}
|
|
|
|
|
2023-12-15 13:28:33 -06:00
|
|
|
plugins {
|
|
|
|
id 'java'
|
|
|
|
}
|
|
|
|
|
2022-05-03 19:38:05 -05:00
|
|
|
dependencies {
|
2023-10-18 13:45:46 -05:00
|
|
|
/**
|
|
|
|
* 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
|
|
|
|
*/
|
2024-04-18 15:03:41 -05:00
|
|
|
implementation('io.acryl:json-schema-avro:0.2.3') {
|
2022-05-03 19:38:05 -05:00
|
|
|
exclude group: 'com.fasterxml.jackson.core', module: 'jackson-databind'
|
|
|
|
exclude group: 'com.google.guava', module: 'guava'
|
|
|
|
}
|
2024-04-18 15:03:41 -05:00
|
|
|
implementation 'com.github.java-json-tools:json-schema-validator:2.2.14'
|
2023-09-01 09:06:01 -05:00
|
|
|
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'
|
2024-10-04 16:31:56 -05:00
|
|
|
implementation 'commons-io:commons-io:2.17.0'
|
2023-09-07 17:09:52 -05:00
|
|
|
|
2023-12-15 13:28:33 -06:00
|
|
|
compileOnly 'org.projectlombok:lombok:1.18.30'
|
|
|
|
annotationProcessor 'org.projectlombok:lombok:1.18.30'
|
2024-04-16 04:49:21 +05:30
|
|
|
}
|