mirror of
https://github.com/datahub-project/datahub.git
synced 2025-08-19 06:38:04 +00:00
15 lines
353 B
Groovy
15 lines
353 B
Groovy
![]() |
plugins {
|
||
|
id 'java-library'
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
api project(':metadata-utils')
|
||
|
api project(':metadata-auth:auth-api')
|
||
|
|
||
|
implementation externalDependency.slf4jApi
|
||
|
compileOnly externalDependency.lombok
|
||
|
|
||
|
annotationProcessor externalDependency.lombok
|
||
|
testImplementation externalDependency.testng
|
||
|
testImplementation externalDependency.mockito
|
||
|
}
|