|
80 | 80 | <djl.starter.version>0.26</djl.starter.version>
|
81 | 81 | <djl.version>0.27.0</djl.version>
|
82 | 82 | <junit-bom.version>5.10.2</junit-bom.version>
|
| 83 | + <spring-ai.version>1.0.0-M1</spring-ai.version> |
83 | 84 | </properties>
|
84 | 85 |
|
85 | 86 | <dependencyManagement>
|
|
98 | 99 | <type>pom</type>
|
99 | 100 | <scope>import</scope>
|
100 | 101 | </dependency>
|
| 102 | + <dependency> |
| 103 | + <groupId>org.springframework.ai</groupId> |
| 104 | + <artifactId>spring-ai-bom</artifactId> |
| 105 | + <version>${spring-ai.version}</version> |
| 106 | + <type>pom</type> |
| 107 | + <scope>import</scope> |
| 108 | + </dependency> |
101 | 109 | </dependencies>
|
102 | 110 | </dependencyManagement>
|
103 | 111 |
|
|
150 | 158 | <version>${sdr.version}</version>
|
151 | 159 | </dependency>
|
152 | 160 | <dependency>
|
153 |
| - <groupId>org.springframework.boot</groupId> |
154 |
| - <artifactId>spring-boot-starter-aop</artifactId> |
| 161 | + <groupId>org.springframework</groupId> |
| 162 | + <artifactId>spring-aop</artifactId> |
| 163 | + </dependency> |
| 164 | + <dependency> |
| 165 | + <groupId>org.aspectj</groupId> |
| 166 | + <artifactId>aspectjweaver</artifactId> |
155 | 167 | </dependency>
|
156 | 168 | <dependency>
|
157 | 169 | <groupId>org.springframework</groupId>
|
158 | 170 | <artifactId>spring-context-support</artifactId>
|
159 | 171 | </dependency>
|
160 | 172 | <dependency>
|
161 |
| - <groupId>org.springframework.boot</groupId> |
162 |
| - <artifactId>spring-boot-starter-validation</artifactId> |
| 173 | + <groupId>org.hibernate.validator</groupId> |
| 174 | + <artifactId>hibernate-validator</artifactId> |
| 175 | + </dependency> |
| 176 | + <!-- Spring AI begin --> |
| 177 | + <dependency> |
| 178 | + <groupId>org.springframework.ai</groupId> |
| 179 | + <artifactId>spring-ai-openai</artifactId> |
| 180 | + </dependency> |
| 181 | + <dependency> |
| 182 | + <groupId>jakarta.websocket</groupId> |
| 183 | + <artifactId>jakarta.websocket-api</artifactId> |
| 184 | + <version>2.1.1</version> |
| 185 | + </dependency> |
| 186 | + <dependency> |
| 187 | + <groupId>jakarta.websocket</groupId> |
| 188 | + <artifactId>jakarta.websocket-client-api</artifactId> |
| 189 | + <version>2.1.1</version> |
| 190 | + </dependency> |
| 191 | + <dependency> |
| 192 | + <groupId>org.springframework.ai</groupId> |
| 193 | + <artifactId>spring-ai-ollama</artifactId> |
| 194 | + </dependency> |
| 195 | + <dependency> |
| 196 | + <groupId>org.springframework.ai</groupId> |
| 197 | + <artifactId>spring-ai-azure-openai</artifactId> |
| 198 | + </dependency> |
| 199 | + <dependency> |
| 200 | + <groupId>org.springframework.ai</groupId> |
| 201 | + <artifactId>spring-ai-vertex-ai-palm2</artifactId> |
| 202 | + </dependency> |
| 203 | + <dependency> |
| 204 | + <groupId>org.springframework.ai</groupId> |
| 205 | + <artifactId>spring-ai-bedrock</artifactId> |
| 206 | + </dependency> |
| 207 | + <dependency> |
| 208 | + <groupId>org.springframework.ai</groupId> |
| 209 | + <artifactId>spring-ai-transformers</artifactId> |
| 210 | + </dependency> |
| 211 | + <dependency> |
| 212 | + <groupId>org.springframework.ai</groupId> |
| 213 | + <artifactId>spring-ai-mistral-ai</artifactId> |
| 214 | + </dependency> |
| 215 | + <dependency> |
| 216 | + <groupId>org.springframework.ai</groupId> |
| 217 | + <artifactId>spring-ai-minimax</artifactId> |
| 218 | + </dependency> |
| 219 | + <dependency> |
| 220 | + <groupId>org.springframework.ai</groupId> |
| 221 | + <artifactId>spring-ai-zhipuai</artifactId> |
163 | 222 | </dependency>
|
| 223 | + <!-- Spring AI end --> |
164 | 224 | <dependency>
|
165 | 225 | <groupId>redis.clients</groupId>
|
166 | 226 | <artifactId>jedis</artifactId>
|
|
269 | 329 | <dependency>
|
270 | 330 | <groupId>com.fasterxml.jackson.core</groupId>
|
271 | 331 | <artifactId>jackson-databind</artifactId>
|
272 |
| - <scope>test</scope> |
273 | 332 | </dependency>
|
274 | 333 | </dependencies>
|
275 | 334 |
|
|
0 commit comments