2023-08-31 07:39:37 +08:00
|
|
|
plugins {
|
|
|
|
id "java"
|
2024-06-26 17:49:29 +08:00
|
|
|
id "org.springframework.boot.docker-test"
|
2023-08-31 07:39:37 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
description = "Spring Boot Pulsar smoke test"
|
|
|
|
|
|
|
|
dependencies {
|
2024-06-26 17:49:29 +08:00
|
|
|
dockerTestImplementation(project(":spring-boot-project:spring-boot-starters:spring-boot-starter-test"))
|
2024-06-26 18:10:16 +08:00
|
|
|
dockerTestImplementation(project(":spring-boot-project:spring-boot-tools:spring-boot-test-support-docker"))
|
2024-06-26 17:49:29 +08:00
|
|
|
dockerTestImplementation(project(":spring-boot-project:spring-boot-testcontainers"))
|
|
|
|
dockerTestImplementation("org.awaitility:awaitility")
|
|
|
|
dockerTestImplementation("org.testcontainers:junit-jupiter")
|
|
|
|
dockerTestImplementation("org.testcontainers:pulsar")
|
|
|
|
|
2023-08-31 07:39:37 +08:00
|
|
|
implementation(project(":spring-boot-project:spring-boot-starters:spring-boot-starter-pulsar"))
|
2023-09-05 13:39:34 +08:00
|
|
|
implementation(project(":spring-boot-project:spring-boot-starters:spring-boot-starter-pulsar-reactive"))
|
2023-08-31 07:39:37 +08:00
|
|
|
}
|