Skip to content

Commit 87fabd2

Browse files
wilkinsonaphilwebb
authored andcommitted
Move code from docker-compose-all into relevant modules
Issue: 46071
1 parent 973f8dc commit 87fabd2

File tree

28 files changed

+74
-111
lines changed

28 files changed

+74
-111
lines changed

settings.gradle

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,6 @@ include "spring-boot-project:spring-boot-data-rest"
8585
include "spring-boot-project:spring-boot-dependencies"
8686
include "spring-boot-project:spring-boot-devtools"
8787
include "spring-boot-project:spring-boot-docker-compose"
88-
include "spring-boot-project:spring-boot-docker-compose-all"
8988
include "spring-boot-project:spring-boot-docs"
9089
include "spring-boot-project:spring-boot-elasticsearch"
9190
include "spring-boot-project:spring-boot-flyway"

spring-boot-project/spring-boot-dependencies/build.gradle

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2013,7 +2013,6 @@ bom {
20132013
"spring-boot-data-rest",
20142014
"spring-boot-devtools",
20152015
"spring-boot-docker-compose",
2016-
"spring-boot-docker-compose-all",
20172016
"spring-boot-elasticsearch",
20182017
"spring-boot-flyway",
20192018
"spring-boot-freemarker",

spring-boot-project/spring-boot-docker-compose-all/build.gradle

Lines changed: 0 additions & 89 deletions
This file was deleted.

spring-boot-project/spring-boot-docker-compose-all/src/main/resources/META-INF/spring.factories

Lines changed: 0 additions & 5 deletions
This file was deleted.

spring-boot-project/spring-boot-docs/build.gradle

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -257,7 +257,6 @@ dependencies {
257257
implementation(project(path: ":spring-boot-project:spring-boot-data-neo4j"))
258258
implementation(project(path: ":spring-boot-project:spring-boot-devtools"))
259259
implementation(project(path: ":spring-boot-project:spring-boot-docker-compose"))
260-
implementation(project(path: ":spring-boot-project:spring-boot-docker-compose-all"))
261260
implementation(project(path: ":spring-boot-project:spring-boot-http-converter"))
262261
implementation(project(path: ":spring-boot-project:spring-boot-http-codec"))
263262
implementation(project(path: ":spring-boot-project:spring-boot-integration"))

spring-boot-project/spring-boot-metrics/build.gradle

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ dependencies {
3434

3535
optional(project(":spring-boot-project:spring-boot-actuator-autoconfigure"))
3636
optional(project(":spring-boot-project:spring-boot-autoconfigure"))
37+
optional(project(":spring-boot-project:spring-boot-docker-compose"))
3738
optional(project(":spring-boot-project:spring-boot-opentelemetry"))
3839
optional(project(":spring-boot-project:spring-boot-testcontainers"))
3940
optional("ch.qos.logback:logback-classic")
@@ -65,6 +66,7 @@ dependencies {
6566
optional("org.testcontainers:grafana")
6667

6768
dockerTestImplementation(project(":spring-boot-project:spring-boot-tools:spring-boot-test-support-docker"))
69+
dockerTestImplementation(testFixtures(project(":spring-boot-project:spring-boot-docker-compose")))
6870
dockerTestImplementation("io.rest-assured:rest-assured")
6971
dockerTestImplementation("org.testcontainers:junit-jupiter")
7072

Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* limitations under the License.
1515
*/
1616

17-
package org.springframework.boot.docker.compose.service.connection.otlp;
17+
package org.springframework.boot.metrics.docker.compose.otlp;
1818

1919
import org.springframework.boot.docker.compose.service.connection.test.DockerComposeTest;
2020
import org.springframework.boot.metrics.autoconfigure.export.otlp.OtlpMetricsConnectionDetails;
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* limitations under the License.
1515
*/
1616

17-
package org.springframework.boot.docker.compose.service.connection.otlp;
17+
package org.springframework.boot.metrics.docker.compose.otlp;
1818

1919
import org.springframework.boot.docker.compose.service.connection.test.DockerComposeTest;
2020
import org.springframework.boot.metrics.autoconfigure.export.otlp.OtlpMetricsConnectionDetails;
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* limitations under the License.
1515
*/
1616

17-
package org.springframework.boot.docker.compose.service.connection.otlp;
17+
package org.springframework.boot.metrics.docker.compose.otlp;
1818

1919
import org.springframework.boot.docker.compose.core.RunningService;
2020
import org.springframework.boot.docker.compose.service.connection.DockerComposeConnectionDetailsFactory;

0 commit comments

Comments
 (0)