From 512ae893d225eb5d05f124e01bcde80a3e75ff2e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Edd=C3=BA=20Mel=C3=A9ndez=20Gonzales?= Date: Tue, 10 Jun 2025 10:34:37 -0600 Subject: [PATCH] Make auto-configuration deps optional in docker compose module (#3502) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Currently, spring-ai-spring-boot-docker-compose module brings auto-configuration modules plus other dependencies which are unnecessary. Signed-off-by: EddĂș MelĂ©ndez (cherry picked from commit 825bcf6ab0987503657343ebd8d1ab4895be74b7) --- spring-ai-spring-boot-docker-compose/pom.xml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/spring-ai-spring-boot-docker-compose/pom.xml b/spring-ai-spring-boot-docker-compose/pom.xml index b1c9a9184..b59661cae 100644 --- a/spring-ai-spring-boot-docker-compose/pom.xml +++ b/spring-ai-spring-boot-docker-compose/pom.xml @@ -47,32 +47,38 @@ org.springframework.ai spring-ai-autoconfigure-vector-store-opensearch ${project.parent.version} + true org.springframework.ai spring-ai-autoconfigure-vector-store-chroma ${project.parent.version} + true org.springframework.ai spring-ai-autoconfigure-vector-store-weaviate ${project.parent.version} + true org.springframework.ai spring-ai-autoconfigure-vector-store-qdrant ${project.parent.version} + true org.springframework.ai spring-ai-autoconfigure-vector-store-typesense ${project.parent.version} + true com.google.protobuf protobuf-java ${protobuf-java.version} + true