2023-12-15 13:28:33 -06:00
|
|
|
plugins {
|
|
|
|
id 'java'
|
|
|
|
}
|
2021-08-20 10:58:07 -07:00
|
|
|
|
2024-12-03 06:57:43 +05:30
|
|
|
apply from: '../../gradle/coverage/java-coverage.gradle'
|
|
|
|
|
2021-08-20 10:58:07 -07:00
|
|
|
dependencies {
|
2023-09-01 09:06:01 -05:00
|
|
|
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')
|
2021-09-02 19:05:13 -07:00
|
|
|
|
2023-09-01 09:06:01 -05:00
|
|
|
implementation externalDependency.servletApi
|
2022-12-04 21:57:47 -06:00
|
|
|
implementation externalDependency.slf4jApi
|
|
|
|
compileOnly externalDependency.lombok
|
2023-09-01 09:06:01 -05:00
|
|
|
implementation externalDependency.springWeb
|
|
|
|
implementation externalDependency.guice
|
2021-09-02 19:05:13 -07:00
|
|
|
|
|
|
|
annotationProcessor externalDependency.lombok
|
2023-09-01 09:06:01 -05:00
|
|
|
testImplementation externalDependency.mockito
|
2023-10-17 15:50:32 -05:00
|
|
|
testImplementation externalDependency.testng
|
|
|
|
testImplementation externalDependency.springBootTest
|
2021-11-22 16:33:14 -08:00
|
|
|
}
|