From dfa09c193093aec667304f8392358e45cf88d625 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Edd=C3=BA=20Mel=C3=A9ndez=20Gonzales?= Date: Mon, 9 Jun 2025 00:26:28 -0600 Subject: [PATCH] Make auto-configuration deps optional in testcontainers module (#3465) 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 (cherry picked from commit 161c437556a3f79761c8d8991f1fa22f68cbc78e) --- 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 0b81e6dd2..276e9f738 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