From 0a5930205534b2cf13a89fbc9cbaab91ddd588c3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Edd=C3=BA=20Mel=C3=A9ndez?= Date: Fri, 6 Jun 2025 13:52:56 -0600 Subject: [PATCH] Make auto-configuration deps optional in testcontainers module MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Currently, spring-ai-spring-boot-testcontainers module brings auto-configuration modules plus other dependencies which are unnecessary. Signed-off-by: EddĂș MelĂ©ndez --- spring-ai-spring-boot-testcontainers/pom.xml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/spring-ai-spring-boot-testcontainers/pom.xml b/spring-ai-spring-boot-testcontainers/pom.xml index c645270c48b..86b1c66477a 100644 --- a/spring-ai-spring-boot-testcontainers/pom.xml +++ b/spring-ai-spring-boot-testcontainers/pom.xml @@ -48,48 +48,57 @@ org.springframework.ai spring-ai-autoconfigure-model-ollama ${project.parent.version} + true 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-mongodb-atlas ${project.parent.version} + true org.springframework.ai spring-ai-autoconfigure-vector-store-milvus ${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-weaviate ${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