Skip to content

Commit 890a20a

Browse files
committed
chore: update Spring AI to 2.0.0-SNAPSHOT
1 parent 3623bef commit 890a20a

76 files changed

Lines changed: 5945 additions & 55 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
Lines changed: 63 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
4+
<modelVersion>4.0.0</modelVersion>
5+
<parent>
6+
<groupId>org.springframework.boot</groupId>
7+
<artifactId>spring-boot-starter-parent</artifactId>
8+
<version>3.5.7</version>
9+
<relativePath/> <!-- lookup parent from repository -->
10+
</parent>
11+
<groupId>com.example</groupId>
12+
<artifactId>evaluation-recursive-advisor-demo</artifactId>
13+
<version>0.0.1-SNAPSHOT</version>
14+
<name>evaluation-recursive-advisor-demo</name>
15+
<description>Demo project for Spring Boot</description>
16+
17+
<properties>
18+
<java.version>17</java.version>
19+
<spring-ai.version>1.1.0</spring-ai.version>
20+
</properties>
21+
<dependencies>
22+
<dependency>
23+
<groupId>org.springframework.ai</groupId>
24+
<artifactId>spring-ai-starter-model-anthropic</artifactId>
25+
</dependency>
26+
<dependency>
27+
<groupId>org.springframework.ai</groupId>
28+
<artifactId>spring-ai-starter-model-ollama</artifactId>
29+
</dependency>
30+
31+
<dependency>
32+
<groupId>org.springframework.boot</groupId>
33+
<artifactId>spring-boot-starter-test</artifactId>
34+
<scope>test</scope>
35+
</dependency>
36+
<dependency>
37+
<groupId>io.projectreactor</groupId>
38+
<artifactId>reactor-test</artifactId>
39+
<scope>test</scope>
40+
</dependency>
41+
</dependencies>
42+
<dependencyManagement>
43+
<dependencies>
44+
<dependency>
45+
<groupId>org.springframework.ai</groupId>
46+
<artifactId>spring-ai-bom</artifactId>
47+
<version>1.1.0</version>
48+
<type>pom</type>
49+
<scope>import</scope>
50+
</dependency>
51+
</dependencies>
52+
</dependencyManagement>
53+
54+
<build>
55+
<plugins>
56+
<plugin>
57+
<groupId>org.springframework.boot</groupId>
58+
<artifactId>spring-boot-maven-plugin</artifactId>
59+
</plugin>
60+
</plugins>
61+
</build>
62+
63+
</project>
Lines changed: 59 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,59 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
4+
<modelVersion>4.0.0</modelVersion>
5+
<parent>
6+
<groupId>org.springframework.boot</groupId>
7+
<artifactId>spring-boot-starter-parent</artifactId>
8+
<version>3.5.7</version>
9+
<relativePath/> <!-- lookup parent from repository -->
10+
</parent>
11+
<groupId>com.example</groupId>
12+
<artifactId>recursive-advisor-demo</artifactId>
13+
<version>0.0.1-SNAPSHOT</version>
14+
<name>recursive-advisor-demo</name>
15+
<description>Demo project for Spring Boot</description>
16+
17+
<properties>
18+
<java.version>17</java.version>
19+
<spring-ai.version>1.1.0</spring-ai.version>
20+
</properties>
21+
<dependencies>
22+
<dependency>
23+
<groupId>org.springframework.ai</groupId>
24+
<artifactId>spring-ai-starter-model-anthropic</artifactId>
25+
</dependency>
26+
27+
<dependency>
28+
<groupId>org.springframework.boot</groupId>
29+
<artifactId>spring-boot-starter-test</artifactId>
30+
<scope>test</scope>
31+
</dependency>
32+
<dependency>
33+
<groupId>io.projectreactor</groupId>
34+
<artifactId>reactor-test</artifactId>
35+
<scope>test</scope>
36+
</dependency>
37+
</dependencies>
38+
<dependencyManagement>
39+
<dependencies>
40+
<dependency>
41+
<groupId>org.springframework.ai</groupId>
42+
<artifactId>spring-ai-bom</artifactId>
43+
<version>1.1.0</version>
44+
<type>pom</type>
45+
<scope>import</scope>
46+
</dependency>
47+
</dependencies>
48+
</dependencyManagement>
49+
50+
<build>
51+
<plugins>
52+
<plugin>
53+
<groupId>org.springframework.boot</groupId>
54+
<artifactId>spring-boot-maven-plugin</artifactId>
55+
</plugin>
56+
</plugins>
57+
</build>
58+
59+
</project>
Lines changed: 92 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,92 @@
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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
5+
<modelVersion>4.0.0</modelVersion>
6+
<parent>
7+
<groupId>org.springframework.boot</groupId>
8+
<artifactId>spring-boot-starter-parent</artifactId>
9+
<version>3.4.5</version>
10+
<relativePath /> <!-- lookup parent from repository -->
11+
</parent>
12+
<groupId>com.example.spring.ai</groupId>
13+
<artifactId>chain-workflow</artifactId>
14+
<version>0.0.1-SNAPSHOT</version>
15+
<name>chain-workflow</name>
16+
<description>Demo project for Spring Boot</description>
17+
<properties>
18+
<java.version>17</java.version>
19+
<spring-ai.version>1.1.0</spring-ai.version>
20+
</properties>
21+
<dependencies>
22+
<dependency>
23+
<groupId>org.springframework.boot</groupId>
24+
<artifactId>spring-boot-starter-web</artifactId>
25+
</dependency>
26+
27+
28+
<!-- <dependency>
29+
<groupId>org.springframework.ai</groupId>
30+
<artifactId>spring-ai-starter-model-openai</artifactId>
31+
</dependency> -->
32+
33+
<dependency>
34+
<groupId>org.springframework.ai</groupId>
35+
<artifactId>spring-ai-starter-model-anthropic</artifactId>
36+
</dependency>
37+
38+
<!-- <dependency>
39+
<groupId>org.springframework.ai</groupId>
40+
<artifactId>spring-ai-starter-model-ollama</artifactId>
41+
</dependency> -->
42+
43+
<dependency>
44+
<groupId>org.springframework.boot</groupId>
45+
<artifactId>spring-boot-starter-test</artifactId>
46+
<scope>test</scope>
47+
</dependency>
48+
</dependencies>
49+
<dependencyManagement>
50+
<dependencies>
51+
<dependency>
52+
<groupId>org.springframework.ai</groupId>
53+
<artifactId>spring-ai-bom</artifactId>
54+
<version>1.1.0</version>
55+
<type>pom</type>
56+
<scope>import</scope>
57+
</dependency>
58+
</dependencies>
59+
</dependencyManagement>
60+
61+
<build>
62+
<plugins>
63+
<plugin>
64+
<groupId>org.springframework.boot</groupId>
65+
<artifactId>spring-boot-maven-plugin</artifactId>
66+
</plugin>
67+
</plugins>
68+
</build>
69+
70+
<repositories>
71+
<repository>
72+
<id>spring-milestones</id>
73+
<name>Spring Milestones</name>
74+
<url>https://repo.spring.io/milestone</url>
75+
<snapshots>
76+
<enabled>false</enabled>
77+
</snapshots>
78+
</repository>
79+
<repository>
80+
<id>central-portal-snapshots</id>
81+
<name>Central Portal Snapshots</name>
82+
<url>https://central.sonatype.com/repository/maven-snapshots/</url>
83+
<releases>
84+
<enabled>false</enabled>
85+
</releases>
86+
<snapshots>
87+
<enabled>true</enabled>
88+
</snapshots>
89+
</repository>
90+
</repositories>
91+
92+
</project>
Lines changed: 93 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,93 @@
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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
5+
<modelVersion>4.0.0</modelVersion>
6+
<parent>
7+
<groupId>org.springframework.boot</groupId>
8+
<artifactId>spring-boot-starter-parent</artifactId>
9+
<version>3.4.5</version>
10+
<relativePath /> <!-- lookup parent from repository -->
11+
</parent>
12+
<groupId>com.example.spring.ai</groupId>
13+
<artifactId>evaluator-optimizer</artifactId>
14+
<version>0.0.1-SNAPSHOT</version>
15+
<name>evaluator-optimizer</name>
16+
<description>Demo project for Spring Boot</description>
17+
<properties>
18+
<java.version>17</java.version>
19+
<spring-ai.version>1.1.0</spring-ai.version>
20+
</properties>
21+
<dependencies>
22+
<dependency>
23+
<groupId>org.springframework.boot</groupId>
24+
<artifactId>spring-boot-starter-web</artifactId>
25+
</dependency>
26+
27+
28+
<dependency>
29+
<groupId>org.springframework.ai</groupId>
30+
<artifactId>spring-ai-starter-model-openai</artifactId>
31+
</dependency>
32+
33+
<!-- <dependency>-->
34+
<!-- <groupId>org.springframework.ai</groupId>-->
35+
<!-- <artifactId>spring-ai-starter-model-anthropic</artifactId>-->
36+
<!-- </dependency>-->
37+
38+
39+
<!-- <dependency>
40+
<groupId>org.springframework.ai</groupId>
41+
<artifactId>spring-ai-starter-model-ollama</artifactId>
42+
</dependency> -->
43+
44+
<dependency>
45+
<groupId>org.springframework.boot</groupId>
46+
<artifactId>spring-boot-starter-test</artifactId>
47+
<scope>test</scope>
48+
</dependency>
49+
</dependencies>
50+
<dependencyManagement>
51+
<dependencies>
52+
<dependency>
53+
<groupId>org.springframework.ai</groupId>
54+
<artifactId>spring-ai-bom</artifactId>
55+
<version>1.1.0</version>
56+
<type>pom</type>
57+
<scope>import</scope>
58+
</dependency>
59+
</dependencies>
60+
</dependencyManagement>
61+
62+
<build>
63+
<plugins>
64+
<plugin>
65+
<groupId>org.springframework.boot</groupId>
66+
<artifactId>spring-boot-maven-plugin</artifactId>
67+
</plugin>
68+
</plugins>
69+
</build>
70+
71+
<repositories>
72+
<repository>
73+
<id>spring-milestones</id>
74+
<name>Spring Milestones</name>
75+
<url>https://repo.spring.io/milestone</url>
76+
<snapshots>
77+
<enabled>false</enabled>
78+
</snapshots>
79+
</repository>
80+
<repository>
81+
<id>central-portal-snapshots</id>
82+
<name>Central Portal Snapshots</name>
83+
<url>https://central.sonatype.com/repository/maven-snapshots/</url>
84+
<releases>
85+
<enabled>false</enabled>
86+
</releases>
87+
<snapshots>
88+
<enabled>true</enabled>
89+
</snapshots>
90+
</repository>
91+
</repositories>
92+
93+
</project>

0 commit comments

Comments
 (0)