File tree Expand file tree Collapse file tree 2 files changed +8
-4
lines changed
spring-boot-tests/spring-boot-smoke-tests/spring-boot-smoke-test-kafka
src/dockerTest/java/smoketest/kafka/ssl Expand file tree Collapse file tree 2 files changed +8
-4
lines changed Original file line number Diff line number Diff line change 1
1
plugins {
2
2
id " java"
3
3
id " org.springframework.boot.conventions"
4
+ id " org.springframework.boot.docker-test"
4
5
}
5
6
6
7
description = " Spring Boot Kafka smoke test"
7
8
8
9
dependencies {
10
+ dockerTestImplementation(project(" :spring-boot-project:spring-boot-starters:spring-boot-starter-test" ))
11
+ dockerTestImplementation(project(" :spring-boot-project:spring-boot-tools:spring-boot-test-support" ))
12
+ dockerTestImplementation(" org.awaitility:awaitility" )
13
+ dockerTestImplementation(" org.testcontainers:junit-jupiter" )
14
+ dockerTestImplementation(" org.testcontainers:kafka" )
15
+
9
16
implementation(project(" :spring-boot-project:spring-boot-starters:spring-boot-starter-json" ))
10
17
implementation(" org.springframework.kafka:spring-kafka" )
11
-
18
+
12
19
testImplementation(project(" :spring-boot-project:spring-boot-starters:spring-boot-starter-test" ))
13
- testImplementation(project(" :spring-boot-project:spring-boot-tools:spring-boot-test-support" ))
14
20
testImplementation(" org.awaitility:awaitility" )
15
21
testImplementation(" org.springframework.kafka:spring-kafka-test" ) {
16
22
exclude group : " commons-logging" , module : " commons-logging"
17
23
}
18
- testImplementation(" org.testcontainers:junit-jupiter" )
19
- testImplementation(" org.testcontainers:kafka" )
20
24
}
File renamed without changes.
You can’t perform that action at this time.
0 commit comments