1+ <?xml version =" 1.0" encoding =" UTF-8" ?>
2+ <project xmlns =" http://maven.apache.org/POM/4.0.0"
3+ xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
4+ xsi : schemaLocation =" http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" >
5+ <modelVersion >4.0.0</modelVersion >
6+
7+ <parent >
8+ <groupId >org.springframework.boot</groupId >
9+ <artifactId >spring-boot-starter-parent</artifactId >
10+ <version >3.4.1</version >
11+ <relativePath />
12+ </parent >
13+
14+ <groupId >com.javaaidev</groupId >
15+ <artifactId >pdf-qa</artifactId >
16+ <version >1.0.0-SNAPSHOT</version >
17+
18+ <properties >
19+ <maven .compiler.source>21</maven .compiler.source>
20+ <maven .compiler.target>21</maven .compiler.target>
21+ <project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
22+ <spring-ai .version>1.0.0-M5</spring-ai .version>
23+ </properties >
24+
25+ <dependencyManagement >
26+ <dependencies >
27+ <dependency >
28+ <groupId >org.springframework.ai</groupId >
29+ <artifactId >spring-ai-bom</artifactId >
30+ <version >${spring-ai.version} </version >
31+ <type >pom</type >
32+ <scope >import</scope >
33+ </dependency >
34+ </dependencies >
35+ </dependencyManagement >
36+
37+ <dependencies >
38+ <dependency >
39+ <groupId >org.springframework.ai</groupId >
40+ <artifactId >spring-ai-chroma-store-spring-boot-starter</artifactId >
41+ </dependency >
42+ <dependency >
43+ <groupId >org.springframework.ai</groupId >
44+ <artifactId >spring-ai-ollama-spring-boot-starter</artifactId >
45+ </dependency >
46+ <dependency >
47+ <groupId >org.springframework.ai</groupId >
48+ <artifactId >spring-ai-pdf-document-reader</artifactId >
49+ </dependency >
50+ <dependency >
51+ <groupId >org.springframework.boot</groupId >
52+ <artifactId >spring-boot-starter-web</artifactId >
53+ </dependency >
54+ </dependencies >
55+
56+ <repositories >
57+ <repository >
58+ <id >spring-milestones</id >
59+ <name >Spring Milestones</name >
60+ <url >https://repo.spring.io/milestone</url >
61+ <snapshots >
62+ <enabled >false</enabled >
63+ </snapshots >
64+ </repository >
65+ <repository >
66+ <id >spring-snapshots</id >
67+ <name >Spring Snapshots</name >
68+ <url >https://repo.spring.io/snapshot</url >
69+ <releases >
70+ <enabled >false</enabled >
71+ </releases >
72+ </repository >
73+ </repositories >
74+
75+ </project >
0 commit comments