mirror of
https://github.com/datahub-project/datahub.git
synced 2025-07-06 00:31:18 +00:00
33 lines
975 B
Groovy
33 lines
975 B
Groovy
plugins {
|
|
id 'java'
|
|
}
|
|
|
|
apply from: '../../gradle/coverage/java-coverage.gradle'
|
|
|
|
dependencies {
|
|
implementation project(':metadata-auth:auth-api')
|
|
implementation project(':metadata-service:auth-impl')
|
|
implementation project(':metadata-service:factories')
|
|
|
|
implementation externalDependency.springCore
|
|
implementation externalDependency.springWeb
|
|
implementation externalDependency.springWebMVC
|
|
implementation externalDependency.graphqlJava
|
|
implementation externalDependency.springBeans
|
|
implementation externalDependency.springContext
|
|
implementation externalDependency.guice
|
|
implementation externalDependency.slf4jApi
|
|
implementation externalDependency.opentelemetryApi
|
|
compileOnly externalDependency.lombok
|
|
|
|
annotationProcessor externalDependency.lombok
|
|
|
|
testImplementation externalDependency.testng
|
|
testImplementation externalDependency.springBootTest
|
|
}
|
|
|
|
test {
|
|
testLogging.showStandardStreams = true
|
|
testLogging.exceptionFormat = 'full'
|
|
}
|