Move Hazelcast Docker Compose support into spring-boot-hazelcast

This commit is contained in:
Phillip Webb
2025-05-19 19:28:29 -07:00
parent f2361db02a
commit 0519564fec
10 changed files with 9 additions and 7 deletions

View File

@@ -1,7 +1,6 @@
# Connection Details Factories
org.springframework.boot.autoconfigure.service.connection.ConnectionDetailsFactory=\
org.springframework.boot.docker.compose.service.connection.clickhouse.ClickHouseR2dbcDockerComposeConnectionDetailsFactory,\
org.springframework.boot.docker.compose.service.connection.hazelcast.HazelcastDockerComposeConnectionDetailsFactory,\
org.springframework.boot.docker.compose.service.connection.ldap.LLdapDockerComposeConnectionDetailsFactory,\
org.springframework.boot.docker.compose.service.connection.ldap.OpenLdapDockerComposeConnectionDetailsFactory,\
org.springframework.boot.docker.compose.service.connection.mariadb.MariaDbR2dbcDockerComposeConnectionDetailsFactory,\

View File

@@ -17,6 +17,7 @@ dependencies {
optional(project(":spring-boot-project:spring-boot-actuator-autoconfigure"))
optional(project(":spring-boot-project:spring-boot-autoconfigure"))
optional(project(":spring-boot-project:spring-boot-docker-compose"))
optional(project(":spring-boot-project:spring-boot-jpa"))
optional(project(":spring-boot-project:spring-boot-testcontainers"))
optional("com.hazelcast:hazelcast-spring")
@@ -24,6 +25,7 @@ dependencies {
dockerTestImplementation(project(":spring-boot-project:spring-boot-test"))
dockerTestImplementation(project(":spring-boot-project:spring-boot-tools:spring-boot-test-support-docker"))
dockerTestImplementation(testFixtures(project(":spring-boot-project:spring-boot-docker-compose")))
dockerTestImplementation("org.testcontainers:junit-jupiter")
testCompileOnly("com.fasterxml.jackson.core:jackson-annotations")

View File

@@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.springframework.boot.docker.compose.service.connection.hazelcast;
package org.springframework.boot.hazelcast.docker.compose;
import com.hazelcast.client.config.ClientConfig;

View File

@@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.springframework.boot.docker.compose.service.connection.hazelcast;
package org.springframework.boot.hazelcast.docker.compose;
import java.util.Map;

View File

@@ -15,6 +15,6 @@
*/
/**
* Auto-configuration for Docker Compose Hazelcast service connections.
* Support for Docker Compose Hazelcast service connections.
*/
package org.springframework.boot.docker.compose.service.connection.hazelcast;
package org.springframework.boot.hazelcast.docker.compose;

View File

@@ -1,3 +1,4 @@
# Connection Details Factories
org.springframework.boot.autoconfigure.service.connection.ConnectionDetailsFactory=\
org.springframework.boot.hazelcast.docker.compose.HazelcastDockerComposeConnectionDetailsFactory,\
org.springframework.boot.hazelcast.testcontainers.HazelcastContainerConnectionDetailsFactory

View File

@@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.springframework.boot.docker.compose.service.connection.hazelcast;
package org.springframework.boot.hazelcast.docker.compose;
import java.util.Collections;
import java.util.Map;