Skip to content

Commit f8226f7

Browse files
committed
build: Use spring-web instead of spring-webflux in spring-ai-retry
The dependency on spring-webflux was unnecessary, there was no code inside spring-ai-retry that made use of it. Also remove 'optional' from slf4j-api dependency (it's not optional, if you don't have it on classpath, RetryUtils will fail to load). Fixes spring-projects#3307 Signed-off-by: Piotr Kubowicz <piotr.kubowicz@gmail.com>
1 parent 3919204 commit f8226f7

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

spring-ai-retry/pom.xml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,13 +49,12 @@
4949

5050
<dependency>
5151
<groupId>org.springframework</groupId>
52-
<artifactId>spring-webflux</artifactId>
52+
<artifactId>spring-web</artifactId>
5353
</dependency>
5454

5555
<dependency>
5656
<groupId>org.slf4j</groupId>
5757
<artifactId>slf4j-api</artifactId>
58-
<optional>true</optional>
5958
</dependency>
6059

6160
<!-- test dependencies -->
@@ -66,4 +65,4 @@
6665
</dependency>
6766

6867
</dependencies>
69-
</project>
68+
</project>

0 commit comments

Comments
 (0)