2023-12-15 13:28:33 -06:00
|
|
|
plugins {
|
|
|
|
id 'java'
|
|
|
|
}
|
2023-05-01 13:18:41 -05:00
|
|
|
|
2024-12-03 06:57:43 +05:30
|
|
|
apply from: '../../gradle/coverage/java-coverage.gradle'
|
|
|
|
|
2023-05-01 13:18:41 -05:00
|
|
|
dependencies {
|
2023-09-01 09:06:01 -05:00
|
|
|
implementation project(':metadata-service:factories')
|
|
|
|
implementation project(':metadata-service:schema-registry-api')
|
2023-05-01 13:18:41 -05:00
|
|
|
|
2023-09-01 09:06:01 -05:00
|
|
|
implementation externalDependency.reflections
|
|
|
|
implementation externalDependency.springBoot
|
|
|
|
implementation externalDependency.springCore
|
|
|
|
implementation(externalDependency.springDocUI) {
|
2023-05-01 13:18:41 -05:00
|
|
|
exclude group: 'org.springframework.boot'
|
|
|
|
}
|
2023-09-01 09:06:01 -05:00
|
|
|
implementation externalDependency.springWeb
|
|
|
|
implementation externalDependency.springWebMVC
|
|
|
|
implementation externalDependency.springBeans
|
|
|
|
implementation externalDependency.springContext
|
|
|
|
implementation externalDependency.springBootAutoconfigure
|
2024-01-11 13:44:06 -06:00
|
|
|
implementation externalDependency.servletApi
|
2023-05-01 13:18:41 -05:00
|
|
|
implementation externalDependency.slf4jApi
|
|
|
|
compileOnly externalDependency.lombok
|
|
|
|
implementation externalDependency.antlr4Runtime
|
|
|
|
implementation externalDependency.antlr4
|
|
|
|
|
|
|
|
annotationProcessor externalDependency.lombok
|
|
|
|
|
|
|
|
testImplementation externalDependency.springBootTest
|
2023-06-30 15:56:12 -05:00
|
|
|
testImplementation project(':mock-entity-registry')
|
2024-04-16 13:50:41 -05:00
|
|
|
testImplementation project(':metadata-dao-impl:kafka-producer')
|
2023-09-01 09:06:01 -05:00
|
|
|
testImplementation externalDependency.springBoot
|
|
|
|
testImplementation externalDependency.testContainers
|
|
|
|
testImplementation externalDependency.testContainersKafka
|
|
|
|
testImplementation externalDependency.springKafka
|
|
|
|
testImplementation externalDependency.testng
|
|
|
|
testImplementation externalDependency.mockito
|
|
|
|
testImplementation externalDependency.logbackClassic
|
|
|
|
testImplementation externalDependency.jacksonCore
|
|
|
|
testImplementation externalDependency.jacksonDataBind
|
|
|
|
testImplementation externalDependency.springBootStarterWeb
|
2023-05-01 13:18:41 -05:00
|
|
|
}
|