Skip to content

Commit 2b421a4

Browse files
committed
Move spring-core pom deps versions to the parent pom
Also update the spring could function context to 4.1.1 and jsonchema to 4.35.0
1 parent ea849d9 commit 2b421a4

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

pom.xml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -114,6 +114,7 @@
114114
<maven.compiler.target>17</maven.compiler.target>
115115

116116
<!-- production dependencies -->
117+
<spring-cloud-function-context.version>4.1.1</spring-cloud-function-context.version>
117118
<spring-boot.version>3.2.4</spring-boot.version>
118119
<spring-framework.version>6.1.4</spring-framework.version>
119120
<stringtemplate.version>4.0.2</stringtemplate.version>
@@ -128,6 +129,8 @@
128129
<qdrant.version>1.7.1</qdrant.version>
129130
<spring-retry.version>2.0.5</spring-retry.version>
130131
<ibm.sdk.version>9.20.0</ibm.sdk.version>
132+
<jsonschema.version>4.35.0</jsonschema.version>
133+
<swagger-annotations.version>2.2.20</swagger-annotations.version>
131134

132135
<!-- Protobuf -->
133136
<protobuf-java.version>3.25.2</protobuf-java.version>

spring-ai-core/pom.xml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@
2020
</scm>
2121

2222
<properties>
23-
<jsonschema.version>4.31.1</jsonschema.version>
2423
<antlr.version>4.13.1</antlr.version>
2524
</properties>
2625

@@ -29,19 +28,19 @@
2928
<dependency>
3029
<groupId>io.swagger.core.v3</groupId>
3130
<artifactId>swagger-annotations</artifactId>
32-
<version>2.2.20</version>
31+
<version>${swagger-annotations.version}</version>
3332
</dependency>
3433

3534
<dependency>
3635
<groupId>com.github.victools</groupId>
3736
<artifactId>jsonschema-module-swagger-2</artifactId>
38-
<version>4.33.1</version>
37+
<version>${jsonschema.version}</version>
3938
</dependency>
4039

4140
<dependency>
4241
<groupId>org.springframework.cloud</groupId>
4342
<artifactId>spring-cloud-function-context</artifactId>
44-
<version>4.1.0</version>
43+
<version>${spring-cloud-function-context.version}</version>
4544
</dependency>
4645

4746
<!-- production dependencies -->

0 commit comments

Comments
 (0)