mirror of
https://github.com/datahub-project/datahub.git
synced 2025-11-03 12:16:10 +00:00
19 lines
692 B
Groovy
19 lines
692 B
Groovy
apply plugin: 'java'
|
|
|
|
dependencies {
|
|
implementation project(':metadata-auth:auth-api')
|
|
implementation project(':metadata-service:auth-impl')
|
|
implementation project(path: ':metadata-service:auth-config')
|
|
implementation project(path: ':metadata-service:factories')
|
|
|
|
implementation externalDependency.servletApi
|
|
implementation externalDependency.slf4jApi
|
|
compileOnly externalDependency.lombok
|
|
implementation externalDependency.springWeb
|
|
implementation externalDependency.guice
|
|
|
|
annotationProcessor externalDependency.lombok
|
|
testImplementation externalDependency.mockito
|
|
testImplementation externalDependency.testng
|
|
testImplementation externalDependency.springBootTest
|
|
} |