Skip to content

Commit 9467c81

Browse files
authored
Patch bael 9487 bael 9552 (#19015)
* Update retryConfig.properties * Update pom.xml
1 parent 42ce72c commit 9467c81

File tree

2 files changed

+28
-16
lines changed

2 files changed

+28
-16
lines changed

spring-scheduling/pom.xml

Lines changed: 26 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,19 @@
1010

1111
<parent>
1212
<groupId>com.baeldung</groupId>
13-
<artifactId>parent-boot-3</artifactId>
13+
<artifactId>parent-boot-4</artifactId>
1414
<version>0.0.1-SNAPSHOT</version>
15-
<relativePath>../parent-boot-3</relativePath>
15+
<relativePath>../parent-boot-4</relativePath>
1616
</parent>
1717

1818
<dependencies>
1919
<dependency>
20-
<groupId>org.springframework</groupId>
21-
<artifactId>spring-context</artifactId>
20+
<groupId>org.springframework.boot</groupId>
21+
<artifactId>spring-boot-starter-aspectj</artifactId>
22+
</dependency>
23+
<dependency>
24+
<groupId>org.springframework.boot</groupId>
25+
<artifactId>spring-boot-starter-web</artifactId>
2226
</dependency>
2327
<dependency>
2428
<groupId>org.springframework.retry</groupId>
@@ -27,27 +31,35 @@
2731
</dependency>
2832
<dependency>
2933
<groupId>org.springframework</groupId>
30-
<artifactId>spring-aspects</artifactId>
31-
<version>${spring-aspects.version}</version>
32-
</dependency>
33-
<dependency>
34-
<groupId>org.springframework.boot</groupId>
35-
<artifactId>spring-boot-starter-web</artifactId>
34+
<artifactId>spring-context</artifactId>
3635
</dependency>
3736
<dependency>
3837
<groupId>org.springframework</groupId>
39-
<artifactId>spring-test</artifactId>
40-
<scope>test</scope>
38+
<artifactId>spring-core</artifactId>
4139
</dependency>
4240
<dependency>
4341
<groupId>org.apache.commons</groupId>
4442
<artifactId>commons-lang3</artifactId>
4543
</dependency>
44+
<dependency>
45+
<groupId>org.springframework.boot</groupId>
46+
<artifactId>spring-boot-starter-test</artifactId>
47+
<scope>test</scope>
48+
</dependency>
49+
<dependency>
50+
<groupId>org.junit.platform</groupId>
51+
<artifactId>junit-platform-launcher</artifactId>
52+
<scope>test</scope>
53+
</dependency>
54+
<dependency>
55+
<groupId>org.junit.vintage</groupId>
56+
<artifactId>junit-vintage-engine</artifactId>
57+
<scope>test</scope>
58+
</dependency>
4659
</dependencies>
4760

4861
<properties>
49-
<spring-retry.version>2.0.3</spring-retry.version>
50-
<spring-aspects.version>6.1.5</spring-aspects.version>
62+
<spring-retry.version>2.0.12</spring-retry.version>
5163
</properties>
5264

5365
</project>
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
retry.maxAttempts=2
2-
retry.maxDelay=100
1+
retry.maxAttempts=3
2+
retry.maxDelay=100

0 commit comments

Comments
 (0)