2024-05-09 14:56:03 -05:00
|
|
|
plugins {
|
|
|
|
id 'java-library'
|
|
|
|
}
|
|
|
|
|
2024-12-03 06:57:43 +05:30
|
|
|
apply from: '../../gradle/coverage/java-coverage.gradle'
|
|
|
|
|
2024-05-09 14:56:03 -05:00
|
|
|
dependencies {
|
|
|
|
implementation project(':entity-registry')
|
|
|
|
implementation project(':metadata-service:services')
|
|
|
|
implementation project(':metadata-utils')
|
|
|
|
compileOnly externalDependency.lombok
|
|
|
|
annotationProcessor externalDependency.lombok
|
2024-07-16 16:56:51 -05:00
|
|
|
|
|
|
|
testImplementation(externalDependency.testng)
|
|
|
|
testImplementation(externalDependency.mockito)
|
|
|
|
testImplementation(testFixtures(project(":entity-registry")))
|
|
|
|
testImplementation project(':metadata-operation-context')
|
|
|
|
testImplementation externalDependency.lombok
|
|
|
|
testAnnotationProcessor externalDependency.lombok
|
2024-05-09 14:56:03 -05:00
|
|
|
}
|
2024-11-27 20:03:28 -06:00
|
|
|
|
|
|
|
test {
|
|
|
|
environment 'STRICT_URN_VALIDATION_ENABLED', 'true'
|
|
|
|
}
|