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(':datahub-graphql-core')
|
|
|
|
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.servletApi
|
|
|
|
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
|
|
|
|
compileOnly externalDependency.lombok
|
2021-08-20 10:58:07 -07:00
|
|
|
annotationProcessor externalDependency.lombok
|
2023-06-07 18:42:19 -05:00
|
|
|
|
|
|
|
implementation externalDependency.charle
|
|
|
|
implementation externalDependency.jetbrains
|
2023-12-08 05:48:50 +08:00
|
|
|
implementation externalDependency.opentelemetryApi
|
2023-06-07 18:42:19 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
configurations.all{
|
|
|
|
exclude group: "com.charleskorn.kaml", module:"kaml"
|
|
|
|
exclude group: " org.jetbrains.kotlin", module:"kotlin-stdlib"
|
2021-08-20 10:58:07 -07:00
|
|
|
}
|