|
| 1 | +<?xml version="1.0" encoding="UTF-8"?> |
| 2 | +<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 3 | + xmlns="http://maven.apache.org/POM/4.0.0" |
| 4 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
| 5 | + <modelVersion>4.0.0</modelVersion> |
| 6 | + <parent> |
| 7 | + <groupId>org.springframework.ai</groupId> |
| 8 | + <artifactId>spring-ai-parent</artifactId> |
| 9 | + <version>1.0.0-SNAPSHOT</version> |
| 10 | + <relativePath>../../../../../pom.xml</relativePath> |
| 11 | + </parent> |
| 12 | + <artifactId>spring-ai-autoconfigure-model-chat-memory-mongodb</artifactId> |
| 13 | + <packaging>jar</packaging> |
| 14 | + <name>Spring AI MongoDB Chat Memory Auto Configuration</name> |
| 15 | + <description>Spring AI MongoDB Chat Memory Auto Configuration</description> |
| 16 | + <url>https://github.com/spring-projects/spring-ai</url> |
| 17 | + |
| 18 | + <scm> |
| 19 | + <url>https://github.com/spring-projects/spring-ai</url> |
| 20 | + <connection>git://github.com/spring-projects/spring-ai.git</connection> |
| 21 | + < developerConnection> [email protected]:spring-projects/spring-ai.git</ developerConnection> |
| 22 | + </scm> |
| 23 | + |
| 24 | + |
| 25 | + <dependencies> |
| 26 | + |
| 27 | + <dependency> |
| 28 | + <groupId>org.springframework.ai</groupId> |
| 29 | + <artifactId>spring-ai-model-chat-memory-mongodb</artifactId> |
| 30 | + <version>${project.parent.version}</version> |
| 31 | + </dependency> |
| 32 | + |
| 33 | + <!-- Boot dependencies --> |
| 34 | + <dependency> |
| 35 | + <groupId>org.springframework.boot</groupId> |
| 36 | + <artifactId>spring-boot-starter</artifactId> |
| 37 | + </dependency> |
| 38 | + |
| 39 | + <dependency> |
| 40 | + <groupId>org.springframework.boot</groupId> |
| 41 | + <artifactId>spring-boot-starter-data-mongodb</artifactId> |
| 42 | + </dependency> |
| 43 | + |
| 44 | + <dependency> |
| 45 | + <groupId>org.springframework.boot</groupId> |
| 46 | + <artifactId>spring-boot-configuration-processor</artifactId> |
| 47 | + <optional>true</optional> |
| 48 | + </dependency> |
| 49 | + |
| 50 | + <dependency> |
| 51 | + <groupId>org.springframework.boot</groupId> |
| 52 | + <artifactId>spring-boot-autoconfigure-processor</artifactId> |
| 53 | + <optional>true</optional> |
| 54 | + </dependency> |
| 55 | + |
| 56 | + <dependency> |
| 57 | + <groupId>org.mongodb</groupId> |
| 58 | + <artifactId>mongodb-driver-sync</artifactId> |
| 59 | + </dependency> |
| 60 | + |
| 61 | + <!-- Test dependencies --> |
| 62 | + <dependency> |
| 63 | + <groupId>org.springframework.ai</groupId> |
| 64 | + <artifactId>spring-ai-test</artifactId> |
| 65 | + <version>${project.parent.version}</version> |
| 66 | + <scope>test</scope> |
| 67 | + </dependency> |
| 68 | + |
| 69 | + <dependency> |
| 70 | + <groupId>org.springframework.ai</groupId> |
| 71 | + <artifactId>spring-ai-autoconfigure-model-chat-client</artifactId> |
| 72 | + <version>${project.parent.version}</version> |
| 73 | + <scope>test</scope> |
| 74 | + </dependency> |
| 75 | + |
| 76 | + <dependency> |
| 77 | + <groupId>org.springframework.ai</groupId> |
| 78 | + <artifactId>spring-ai-openai</artifactId> |
| 79 | + <version>${project.parent.version}</version> |
| 80 | + <scope>test</scope> |
| 81 | + </dependency> |
| 82 | + |
| 83 | + <dependency> |
| 84 | + <groupId>org.springframework.boot</groupId> |
| 85 | + <artifactId>spring-boot-starter-test</artifactId> |
| 86 | + <scope>test</scope> |
| 87 | + </dependency> |
| 88 | + |
| 89 | + <dependency> |
| 90 | + <groupId>org.springframework.boot</groupId> |
| 91 | + <artifactId>spring-boot-testcontainers</artifactId> |
| 92 | + <scope>test</scope> |
| 93 | + </dependency> |
| 94 | + |
| 95 | + <dependency> |
| 96 | + <groupId>org.testcontainers</groupId> |
| 97 | + <artifactId>junit-jupiter</artifactId> |
| 98 | + <scope>test</scope> |
| 99 | + </dependency> |
| 100 | + |
| 101 | + <dependency> |
| 102 | + <groupId>org.testcontainers</groupId> |
| 103 | + <artifactId>mongodb</artifactId> |
| 104 | + <scope>test</scope> |
| 105 | + </dependency> |
| 106 | + |
| 107 | + <dependency> |
| 108 | + <groupId>org.mockito</groupId> |
| 109 | + <artifactId>mockito-core</artifactId> |
| 110 | + <scope>test</scope> |
| 111 | + </dependency> |
| 112 | + </dependencies> |
| 113 | +</project> |
0 commit comments