Qdrant
Testcontainers module for Qdrant
Qdrant's usage examples
You can start a Qdrant container instance from any Java application by using:
QdrantContainer qdrant = new QdrantContainer("qdrant/qdrant:v1.7.4")
Adding this module to your project dependencies
Add the following dependency to your pom.xml
/build.gradle
file:
testImplementation "org.testcontainers:qdrant:1.20.4"
<dependency>
<groupId>org.testcontainers</groupId>
<artifactId>qdrant</artifactId>
<version>1.20.4</version>
<scope>test</scope>
</dependency>