-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathpom.xml
57 lines (39 loc) · 2.11 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<?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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.example.spring.ai</groupId>
<artifactId>spring-ai-examples-parent</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>pom</packaging>
<url>https://github.com/spring-projects/spring-ai</url>
<name>Spring AI</name>
<description>Building AI applications with Spring Boot</description>
<modules>
<module>models/chat/helloworld</module>
<module>agents/reflection</module>
<module>kotlin/kotlin-hello-world</module>
<module>kotlin/kotlin-function-callback</module>
<module>kotlin/rag-with-kotlin</module>
<module>misc/spring-ai-java-function-callback</module>
<module>misc/openai-streaming-response</module>
<module>model-context-protocol/sqlite/simple</module>
<module>model-context-protocol/sqlite/chatbot</module>
<!-- modules listed in alphabetical order -->
<module>model-context-protocol/book-library/manual-servlet-server</module>
<module>model-context-protocol/book-library/manual-webflux-server</module>
<module>model-context-protocol/book-library/manual-webmvc-server</module>
<module>model-context-protocol/book-library/starter-webflux-server</module>
<module>model-context-protocol/brave</module>
<module>model-context-protocol/client-starter/starter-default-client</module>
<module>model-context-protocol/client-starter/starter-webflux-client</module>
<module>model-context-protocol/filesystem</module>
<module>model-context-protocol/weather/manual-webflux-server</module>
<module>model-context-protocol/weather/starter-stdio-server</module>
<module>model-context-protocol/weather/starter-webflux-server</module>
<module>model-context-protocol/weather/starter-webmvc-server</module>
<module>model-context-protocol/web-search/brave-starter</module>
<module>model-context-protocol/web-search/brave-chatbot</module>
<module>agentic-patterns</module>
</modules>
</project>