Skip to content

Commit 0b0e019

Browse files
committed
Polish smoke test dependencies
1 parent 5e90415 commit 0b0e019

File tree

31 files changed

+85
-97
lines changed

31 files changed

+85
-97
lines changed

smoke-test/spring-boot-smoke-test-activemq/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,12 @@ plugins {
2222
description = "Spring Boot ActiveMQ smoke test"
2323

2424
dependencies {
25+
implementation(project(":starter:spring-boot-starter-activemq"))
26+
2527
dockerTestImplementation(project(":starter:spring-boot-starter-test"))
2628
dockerTestImplementation(project(":core:spring-boot-testcontainers"))
2729
dockerTestImplementation(project(":test-support:spring-boot-docker-test-support"))
2830
dockerTestImplementation("org.awaitility:awaitility")
2931
dockerTestImplementation("org.testcontainers:junit-jupiter")
3032
dockerTestImplementation("org.testcontainers:activemq")
31-
32-
implementation(project(":starter:spring-boot-starter-activemq"))
3333
}

smoke-test/spring-boot-smoke-test-actuator-log4j2/build.gradle

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@ configurations.all {
2525
}
2626

2727
dependencies {
28-
implementation(project(":starter:spring-boot-starter"))
2928
implementation(project(":starter:spring-boot-starter-actuator"))
3029
implementation(project(":starter:spring-boot-starter-log4j2"))
3130
implementation(project(":starter:spring-boot-starter-security"))

smoke-test/spring-boot-smoke-test-amqp/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,12 @@ plugins {
2222
description = "Spring Boot AMQP smoke test"
2323

2424
dependencies {
25+
implementation(project(":starter:spring-boot-starter-amqp"))
26+
2527
dockerTestImplementation(project(":starter:spring-boot-starter-test"))
2628
dockerTestImplementation(project(":core:spring-boot-testcontainers"))
2729
dockerTestImplementation(project(":test-support:spring-boot-docker-test-support"))
2830
dockerTestImplementation("org.awaitility:awaitility")
2931
dockerTestImplementation("org.testcontainers:junit-jupiter")
3032
dockerTestImplementation("org.testcontainers:rabbitmq")
31-
32-
implementation(project(":starter:spring-boot-starter-amqp"))
3333
}

smoke-test/spring-boot-smoke-test-artemis/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,12 @@ plugins {
2222
description = "Spring Boot Artemis smoke test"
2323

2424
dependencies {
25+
implementation(project(":starter:spring-boot-starter-artemis"))
26+
2527
dockerTestImplementation(project(":starter:spring-boot-starter-test"))
2628
dockerTestImplementation(project(":core:spring-boot-testcontainers"))
2729
dockerTestImplementation(project(":test-support:spring-boot-docker-test-support"))
2830
dockerTestImplementation("org.awaitility:awaitility")
2931
dockerTestImplementation("org.testcontainers:junit-jupiter")
3032
dockerTestImplementation("org.testcontainers:activemq")
31-
32-
implementation(project(":starter:spring-boot-starter-artemis"))
3333
}

smoke-test/spring-boot-smoke-test-cache/build.gradle

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -37,19 +37,16 @@ configurations {
3737
}
3838

3939
dependencies {
40+
implementation(project(":starter:spring-boot-starter-actuator"))
41+
implementation(project(":starter:spring-boot-starter-cache"))
42+
implementation(project(":starter:spring-boot-starter-webmvc"))
43+
4044
caffeine(enforcedPlatform(project(":platform:spring-boot-dependencies")))
4145
caffeine("com.github.ben-manes.caffeine:caffeine")
4246

4347
couchbase(enforcedPlatform(project(":platform:spring-boot-dependencies")))
4448
couchbase(project(":starter:spring-boot-starter-data-couchbase"))
4549

46-
dockerTestImplementation(project(":starter:spring-boot-starter-data-redis"))
47-
dockerTestImplementation(project(":starter:spring-boot-starter-test"))
48-
dockerTestImplementation(project(":core:spring-boot-testcontainers"))
49-
dockerTestImplementation(project(":test-support:spring-boot-docker-test-support"))
50-
dockerTestImplementation("com.redis:testcontainers-redis")
51-
dockerTestImplementation("org.testcontainers:junit-jupiter")
52-
5350
ehcache(enforcedPlatform(project(":platform:spring-boot-dependencies")))
5451
ehcache("javax.cache:cache-api")
5552
ehcache("org.ehcache:ehcache::jakarta")
@@ -58,17 +55,20 @@ dependencies {
5855
hazelcast(project(":module:spring-boot-hazelcast"))
5956
hazelcast("com.hazelcast:hazelcast-spring")
6057

61-
implementation(project(":starter:spring-boot-starter-actuator"))
62-
implementation(project(":starter:spring-boot-starter-cache"))
63-
implementation(project(":starter:spring-boot-starter-webmvc"))
64-
6558
infinispan(enforcedPlatform(project(":platform:spring-boot-dependencies")))
6659
infinispan("javax.cache:cache-api")
6760
infinispan("org.infinispan:infinispan-commons")
6861
infinispan("org.infinispan:infinispan-component-annotations")
6962
infinispan("org.infinispan:infinispan-core")
7063
infinispan("org.infinispan:infinispan-jcache")
7164

65+
dockerTestImplementation(project(":starter:spring-boot-starter-data-redis"))
66+
dockerTestImplementation(project(":starter:spring-boot-starter-test"))
67+
dockerTestImplementation(project(":core:spring-boot-testcontainers"))
68+
dockerTestImplementation(project(":test-support:spring-boot-docker-test-support"))
69+
dockerTestImplementation("com.redis:testcontainers-redis")
70+
dockerTestImplementation("org.testcontainers:junit-jupiter")
71+
7272
testImplementation(project(":starter:spring-boot-starter-test"))
7373
}
7474

smoke-test/spring-boot-smoke-test-config/build.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ description = "Spring Boot Config smoke test"
2222

2323
dependencies {
2424
implementation(project(":starter:spring-boot-starter"))
25+
2526
testImplementation(project(":starter:spring-boot-starter-test"))
2627
}
2728

smoke-test/spring-boot-smoke-test-data-cassandra/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,9 @@ plugins {
2222
description = "Spring Boot Data Cassandra smoke test"
2323

2424
dependencies {
25+
implementation(project(":starter:spring-boot-starter-data-cassandra"))
26+
implementation(project(":starter:spring-boot-starter-data-cassandra-reactive"))
27+
2528
dockerTestImplementation(project(":core:spring-boot-test"))
2629
dockerTestImplementation(project(":starter:spring-boot-starter-test"))
2730
dockerTestImplementation(project(":test-support:spring-boot-docker-test-support"))
@@ -32,7 +35,4 @@ dependencies {
3235
dockerTestImplementation("org.testcontainers:cassandra")
3336
dockerTestImplementation("org.testcontainers:junit-jupiter")
3437
dockerTestImplementation("org.testcontainers:testcontainers")
35-
36-
implementation(project(":starter:spring-boot-starter-data-cassandra"))
37-
implementation(project(":starter:spring-boot-starter-data-cassandra-reactive"))
3838
}

smoke-test/spring-boot-smoke-test-data-couchbase/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,9 @@ plugins {
2222
description = "Spring Boot Data Couchbase smoke test"
2323

2424
dependencies {
25+
implementation(project(":starter:spring-boot-starter-data-couchbase"))
26+
implementation(project(":starter:spring-boot-starter-data-couchbase-reactive"))
27+
2528
dockerTestImplementation(project(":module:spring-boot-reactor"))
2629
dockerTestImplementation(project(":starter:spring-boot-starter-test"))
2730
dockerTestImplementation(project(":core:spring-boot-test"))
@@ -35,7 +38,4 @@ dependencies {
3538
dockerTestImplementation("org.testcontainers:couchbase")
3639
dockerTestImplementation("org.testcontainers:junit-jupiter")
3740
dockerTestImplementation("org.testcontainers:testcontainers")
38-
39-
implementation(project(":starter:spring-boot-starter-data-couchbase"))
40-
implementation(project(":starter:spring-boot-starter-data-couchbase-reactive"))
4141
}

smoke-test/spring-boot-smoke-test-data-elasticsearch/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,8 @@ plugins {
2323
description = "Spring Boot Data Elasticsearch smoke test"
2424

2525
dependencies {
26+
implementation(project(":starter:spring-boot-starter-data-elasticsearch"))
27+
2628
dockerTestImplementation(project(":starter:spring-boot-starter-test"))
2729
dockerTestImplementation(project(":core:spring-boot-test"))
2830
dockerTestImplementation(project(":test-support:spring-boot-docker-test-support"))
@@ -33,6 +35,4 @@ dependencies {
3335
dockerTestImplementation("org.testcontainers:junit-jupiter")
3436
dockerTestImplementation("org.testcontainers:elasticsearch")
3537
dockerTestImplementation("org.testcontainers:testcontainers")
36-
37-
implementation(project(":starter:spring-boot-starter-data-elasticsearch"))
3838
}

smoke-test/spring-boot-smoke-test-data-mongo/build.gradle

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,9 @@ plugins {
2222
description = "Spring Boot Data MongoDB smoke test"
2323

2424
dependencies {
25+
implementation(project(":starter:spring-boot-starter-data-mongodb"))
26+
implementation(project(":starter:spring-boot-starter-data-mongodb-reactive"))
27+
2528
dockerTestImplementation(project(":starter:spring-boot-starter-test"))
2629
dockerTestImplementation(project(":core:spring-boot-test"))
2730
dockerTestImplementation(project(":test-support:spring-boot-docker-test-support"))
@@ -33,8 +36,4 @@ dependencies {
3336
dockerTestImplementation("org.testcontainers:junit-jupiter")
3437
dockerTestImplementation("org.testcontainers:mongodb")
3538
dockerTestImplementation("org.testcontainers:testcontainers")
36-
37-
implementation(project(":module:spring-boot-reactor"))
38-
implementation(project(":starter:spring-boot-starter-data-mongodb"))
39-
implementation(project(":starter:spring-boot-starter-data-mongodb-reactive"))
4039
}

0 commit comments

Comments
 (0)