2023-12-15 13:28:33 -06:00
|
|
|
plugins {
|
|
|
|
id 'pegasus'
|
|
|
|
id 'java-library'
|
|
|
|
}
|
2021-06-03 13:24:33 -07:00
|
|
|
|
|
|
|
dependencies {
|
2023-09-01 09:06:01 -05:00
|
|
|
implementation spec.product.pegasus.data
|
|
|
|
implementation spec.product.pegasus.generator
|
|
|
|
api project(path: ':metadata-models')
|
2023-12-15 13:28:33 -06:00
|
|
|
api project(path: ':metadata-models', configuration: "dataTemplate")
|
2024-01-08 14:20:03 -06:00
|
|
|
api externalDependency.classGraph
|
2022-12-04 21:57:47 -06:00
|
|
|
implementation externalDependency.slf4jApi
|
|
|
|
compileOnly externalDependency.lombok
|
2023-09-01 09:06:01 -05:00
|
|
|
implementation externalDependency.guava
|
|
|
|
implementation externalDependency.jacksonDataBind
|
|
|
|
implementation externalDependency.jacksonDataFormatYaml
|
|
|
|
implementation externalDependency.reflections
|
|
|
|
implementation externalDependency.jsonPatch
|
2022-12-01 16:43:15 -06:00
|
|
|
constraints {
|
|
|
|
implementation(externalDependency.snakeYaml) {
|
|
|
|
because("previous versions are vulnerable to CVE-2022-25857")
|
|
|
|
}
|
|
|
|
}
|
2021-06-03 13:24:33 -07:00
|
|
|
dataModel project(':li-utils')
|
|
|
|
annotationProcessor externalDependency.lombok
|
|
|
|
|
2023-09-01 09:06:01 -05:00
|
|
|
api externalDependency.mavenArtifact
|
2021-11-28 21:06:27 -08:00
|
|
|
|
2023-09-01 09:06:01 -05:00
|
|
|
testImplementation project(':test-models')
|
|
|
|
testImplementation project(path: ':test-models', configuration: 'testDataTemplate')
|
|
|
|
testImplementation externalDependency.testng
|
|
|
|
testImplementation externalDependency.mockito
|
|
|
|
testImplementation externalDependency.mockitoInline
|
2024-01-08 14:20:03 -06:00
|
|
|
testCompileOnly externalDependency.lombok
|
|
|
|
testImplementation externalDependency.classGraph
|
2021-06-03 13:24:33 -07:00
|
|
|
|
2021-11-28 21:06:27 -08:00
|
|
|
}
|
|
|
|
compileTestJava.dependsOn tasks.getByPath(':entity-registry:custom-test-model:modelDeploy')
|