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(':metadata-service:factories')
|
2021-08-20 10:58:07 -07:00
|
|
|
|
2023-09-01 09:06:01 -05:00
|
|
|
implementation externalDependency.springCore
|
|
|
|
implementation externalDependency.springWeb
|
|
|
|
implementation externalDependency.springWebMVC
|
|
|
|
implementation externalDependency.graphqlJava
|
|
|
|
implementation externalDependency.springBeans
|
|
|
|
implementation externalDependency.springContext
|
|
|
|
implementation externalDependency.guice
|
2022-12-04 21:57:47 -06:00
|
|
|
implementation externalDependency.slf4jApi
|
2025-05-01 21:19:58 -05:00
|
|
|
implementation externalDependency.opentelemetryApi
|
2022-12-04 21:57:47 -06:00
|
|
|
compileOnly externalDependency.lombok
|
2021-08-20 10:58:07 -07:00
|
|
|
|
|
|
|
annotationProcessor externalDependency.lombok
|
2024-01-24 17:36:30 -08:00
|
|
|
|
|
|
|
testImplementation externalDependency.testng
|
|
|
|
testImplementation externalDependency.springBootTest
|
|
|
|
}
|
|
|
|
|
|
|
|
test {
|
|
|
|
testLogging.showStandardStreams = true
|
|
|
|
testLogging.exceptionFormat = 'full'
|
2021-08-20 10:58:07 -07:00
|
|
|
}
|