Use Testcontainers Vector DBs modules in autoconfiguartion module

This commit is contained in:
Eddú Meléndez
2024-03-06 22:14:08 -06:00
committed by Christian Tzolov
parent 476164b6e3
commit 879f992394
6 changed files with 40 additions and 110 deletions

View File

@@ -406,15 +406,36 @@
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.testcontainers</groupId>
<artifactId>chromadb</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.testcontainers</groupId>
<artifactId>milvus</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.testcontainers</groupId>
<artifactId>qdrant</artifactId>
<version>${testcontainers.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.testcontainers</groupId>
<artifactId>elasticsearch</artifactId>
<version>${testcontainers.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.testcontainers</groupId>
<artifactId>weaviate</artifactId>
<version>${testcontainers.version}</version>
<scope>test</scope>
</dependency>