mirror of
https://github.com/datahub-project/datahub.git
synced 2025-07-19 07:30:54 +00:00
19 lines
603 B
Groovy
19 lines
603 B
Groovy
plugins {
|
|
id 'java-library'
|
|
}
|
|
|
|
dependencies {
|
|
implementation project(':entity-registry')
|
|
implementation project(':metadata-service:services')
|
|
implementation project(':metadata-utils')
|
|
compileOnly externalDependency.lombok
|
|
annotationProcessor externalDependency.lombok
|
|
|
|
testImplementation(externalDependency.testng)
|
|
testImplementation(externalDependency.mockito)
|
|
testImplementation(testFixtures(project(":entity-registry")))
|
|
testImplementation project(':metadata-operation-context')
|
|
testImplementation externalDependency.lombok
|
|
testAnnotationProcessor externalDependency.lombok
|
|
}
|