langchain4j-community-spring-boot-starters
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>dev.langchain4j</groupId>
<artifactId>langchain4j-community-spring-boot-starters</artifactId>
<version>1.15.0-beta25</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>dev.langchain4j</groupId>
<artifactId>langchain4j-community</artifactId>
<version>1.15.0-beta25</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>langchain4j-community-spring-boot-starters</artifactId>
<packaging>pom</packaging>
<name>LangChain4j :: Community :: Spring Boot starters</name>
<description>Parent POM for langchain4j-community spring-boot-starters submodules</description>
<licenses>
<license>
<name>Apache-2.0</name>
<url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
<comments>A business-friendly OSS license</comments>
</license>
</licenses>
<modules>
<module>langchain4j-community-clickhouse-spring-boot-starter</module>
<module>langchain4j-community-dashscope-spring-boot-starter</module>
<module>langchain4j-community-qianfan-spring-boot-starter</module>
<module>langchain4j-community-redis-spring-boot-starter</module>
<module>langchain4j-community-valkey-spring-boot-starter</module>
<module>langchain4j-community-vearch-spring-boot-starter</module>
<module>langchain4j-community-xinference-spring-boot-starter</module>
<module>langchain4j-community-neo4j-spring-boot-starter</module>
<module>langchain4j-community-oceanbase-spring-boot-starter</module>
<module>langchain4j-community-zhipu-ai-spring-boot-starter</module>
<module>langchain4j-community-cohere-spring-boot-starter</module>
</modules>
<properties>
<spring-boot.version>3.5.13</spring-boot.version>
<logback.version>1.5.32</logback.version>
</properties>
<!-- Introducing this pom.xml in order to manage Spring Boot dependencies -->
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter</artifactId>
<version>${spring-boot.version}</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-autoconfigure-processor</artifactId>
<version>${spring-boot.version}</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<version>${spring-boot.version}</version>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>${logback.version}</version>
</dependency>
<dependency>
<groupId>dev.langchain4j</groupId>
<artifactId>langchain4j-spring-boot-tests</artifactId>
<version>${project.version}</version>
<classifier>tests</classifier>
<type>test-jar</type>
</dependency>
</dependencies>
</dependencyManagement>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<annotationProcessorPaths>
<path>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-configuration-processor</artifactId>
<version>${spring-boot.version}</version>
</path>
</annotationProcessorPaths>
</configuration>
</plugin>
</plugins>
<extensions>
<extension>
<groupId>kr.motd.maven</groupId>
<artifactId>os-maven-plugin</artifactId>
<version>1.7.1</version>
</extension>
</extensions>
</build>
</project>