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-io')
|
|
|
|
implementation project(':datahub-graphql-core')
|
|
|
|
implementation project(':entity-registry')
|
|
|
|
implementation project(':metadata-service:factories')
|
2025-05-23 13:39:43 -05:00
|
|
|
implementation project(':metadata-operation-context')
|
2023-09-01 09:06:01 -05:00
|
|
|
|
|
|
|
implementation externalDependency.httpClient
|
|
|
|
implementation externalDependency.servletApi
|
|
|
|
implementation externalDependency.gson
|
2025-05-24 13:42:10 -05:00
|
|
|
implementation platform(externalDependency.jacksonBom)
|
2023-09-01 09:06:01 -05:00
|
|
|
implementation externalDependency.jacksonDataBind
|
|
|
|
implementation externalDependency.springWebMVC
|
|
|
|
compileOnly externalDependency.lombok
|
2021-08-20 10:58:07 -07:00
|
|
|
annotationProcessor externalDependency.lombok
|
2025-05-23 13:39:43 -05:00
|
|
|
|
|
|
|
testImplementation externalDependency.testng
|
|
|
|
testImplementation externalDependency.springBootTest
|
2021-08-20 10:58:07 -07:00
|
|
|
}
|