pom.xml
 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>ai.driftkit</groupId>
 9          <artifactId>driftkit-context-engineering</artifactId>
10          <version>0.9.0</version>
11      </parent>
12      
13      <artifactId>driftkit-context-engineering-spring-ai-starter</artifactId>
14      <name>DriftKit Context Engineering Spring AI Starter</name>
15      <description>Spring Boot starter for DriftKit Context Engineering Spring AI integration</description>
16      
17      <dependencies>
18          <!-- DriftKit dependencies -->
19          <dependency>
20              <groupId>ai.driftkit</groupId>
21              <artifactId>driftkit-context-engineering-spring-ai</artifactId>
22              <version>${project.version}</version>
23          </dependency>
24          <dependency>
25              <groupId>ai.driftkit</groupId>
26              <artifactId>driftkit-context-engineering-spring-boot-starter</artifactId>
27              <version>${project.version}</version>
28          </dependency>
29          
30          <!-- Spring Boot -->
31          <dependency>
32              <groupId>org.springframework.boot</groupId>
33              <artifactId>spring-boot-autoconfigure</artifactId>
34          </dependency>
35          <dependency>
36              <groupId>org.springframework.boot</groupId>
37              <artifactId>spring-boot-configuration-processor</artifactId>
38              <optional>true</optional>
39          </dependency>
40          
41          <!-- Spring AI -->
42          <dependency>
43              <groupId>org.springframework.ai</groupId>
44              <artifactId>spring-ai-client-chat</artifactId>
45          </dependency>
46          
47          <!-- Lombok -->
48          <dependency>
49              <groupId>org.projectlombok</groupId>
50              <artifactId>lombok</artifactId>
51              <scope>provided</scope>
52          </dependency>
53          
54          <!-- Test dependencies -->
55          <dependency>
56              <groupId>org.springframework.boot</groupId>
57              <artifactId>spring-boot-starter-test</artifactId>
58              <scope>test</scope>
59          </dependency>
60      </dependencies>
61      
62      <build>
63          <plugins>
64              <plugin>
65                  <groupId>org.apache.maven.plugins</groupId>
66                  <artifactId>maven-compiler-plugin</artifactId>
67              </plugin>
68          </plugins>
69      </build>
70  </project>