Skip to content

Commit d337c44

Browse files
wilkinsonaphilwebb
authored andcommitted
Move code from docker-compose-all into relevant modules
1 parent 183a0fb commit d337c44

File tree

28 files changed

+75
-95
lines changed

28 files changed

+75
-95
lines changed

settings.gradle

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,6 @@ include "spring-boot-project:spring-boot-data-rest"
6969
include "spring-boot-project:spring-boot-dependencies"
7070
include "spring-boot-project:spring-boot-devtools"
7171
include "spring-boot-project:spring-boot-docker-compose"
72-
include "spring-boot-project:spring-boot-docker-compose-all"
7372
include "spring-boot-project:spring-boot-docs"
7473
include "spring-boot-project:spring-boot-elasticsearch"
7574
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
@@ -2005,7 +2005,6 @@ bom {
20052005
"spring-boot-data-rest",
20062006
"spring-boot-devtools",
20072007
"spring-boot-docker-compose",
2008-
"spring-boot-docker-compose-all",
20092008
"spring-boot-elasticsearch",
20102009
"spring-boot-flyway",
20112010
"spring-boot-freemarker",

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

Lines changed: 0 additions & 72 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
@@ -241,7 +241,6 @@ dependencies {
241241
implementation(project(path: ":spring-boot-project:spring-boot-data-neo4j"))
242242
implementation(project(path: ":spring-boot-project:spring-boot-devtools"))
243243
implementation(project(path: ":spring-boot-project:spring-boot-docker-compose"))
244-
implementation(project(path: ":spring-boot-project:spring-boot-docker-compose-all"))
245244
implementation(project(path: ":spring-boot-project:spring-boot-http-converter"))
246245
implementation(project(path: ":spring-boot-project:spring-boot-http-codec"))
247246
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
@@ -17,6 +17,7 @@ dependencies {
1717

1818
optional(project(":spring-boot-project:spring-boot-actuator-autoconfigure"))
1919
optional(project(":spring-boot-project:spring-boot-autoconfigure"))
20+
optional(project(":spring-boot-project:spring-boot-docker-compose"))
2021
optional(project(":spring-boot-project:spring-boot-opentelemetry"))
2122
optional(project(":spring-boot-project:spring-boot-testcontainers"))
2223
optional("ch.qos.logback:logback-classic")
@@ -48,6 +49,7 @@ dependencies {
4849
optional("org.testcontainers:grafana")
4950

5051
dockerTestImplementation(project(":spring-boot-project:spring-boot-tools:spring-boot-test-support-docker"))
52+
dockerTestImplementation(testFixtures(project(":spring-boot-project:spring-boot-docker-compose")))
5153
dockerTestImplementation("io.rest-assured:rest-assured")
5254
dockerTestImplementation("org.testcontainers:junit-jupiter")
5355

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)