quarkus-langchain4j-milvus-deployment
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.quarkiverse.langchain4j</groupId> <artifactId>quarkus-langchain4j-milvus-deployment</artifactId> <version>1.0.1</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>io.quarkiverse.langchain4j</groupId> <artifactId>quarkus-langchain4j-milvus-parent</artifactId> <version>1.0.1</version> </parent> <artifactId>quarkus-langchain4j-milvus-deployment</artifactId> <name>Quarkus LangChain4j - Milvus embedding store - Deployment</name> <dependencies> <dependency> <groupId>io.quarkus</groupId> <artifactId>quarkus-arc-deployment</artifactId> </dependency> <dependency> <groupId>io.quarkiverse.langchain4j</groupId> <artifactId>quarkus-langchain4j-core-deployment</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>io.quarkiverse.langchain4j</groupId> <artifactId>quarkus-langchain4j-milvus</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>dev.langchain4j</groupId> <artifactId>langchain4j-milvus</artifactId> </dependency> <dependency> <groupId>io.quarkus</groupId> <artifactId>quarkus-devservices-deployment</artifactId> </dependency> <dependency> <groupId>org.testcontainers</groupId> <artifactId>milvus</artifactId> </dependency> <dependency> <groupId>dev.langchain4j</groupId> <artifactId>langchain4j-core</artifactId> <classifier>tests</classifier> <type>test-jar</type> <scope>test</scope> <version>${langchain4j.version}</version> </dependency> <dependency> <groupId>io.quarkus</groupId> <artifactId>quarkus-junit5-internal</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.assertj</groupId> <artifactId>assertj-core</artifactId> <version>${assertj.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>dev.langchain4j</groupId> <artifactId>langchain4j-embeddings-all-minilm-l6-v2-q</artifactId> <version>${langchain4j-embeddings.version}</version> <scope>test</scope> <exclusions> <exclusion> <groupId>dev.langchain4j</groupId> <artifactId>langchain4j-core</artifactId> </exclusion> </exclusions> </dependency> </dependencies> <build> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> <configuration> <annotationProcessorPaths> <path> <groupId>io.quarkus</groupId> <artifactId>quarkus-extension-processor</artifactId> </path> </annotationProcessorPaths> </configuration> </plugin> <plugin> <!-- this is to avoid java.lang.UnsatisfiedLinkError: Native Library /home/user/.djl.ai/tokenizers/0.15.0-0.26.0-linux-x86_64/libtokenizers.so already loaded in another classloader because we have two tests that are loaded with different class loaders --> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <configuration> <reuseForks>false</reuseForks> </configuration> </plugin> </plugins> </build> </project>