Skip to content

Commit ffa8640

Browse files
committed
Update to latest Spring Boot 2.3.8.RELEASE
* Increments the versoin of Spring Boot used (parent) to the current and latest for the 2.3.x branch. For more information see the Spring Boot release notes. https://github.com/spring-projects/spring-boot/releases/tag/v2.3.8.RELEASE
1 parent 39d7623 commit ffa8640

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,4 @@ target/
66
.classpath
77

88
node_modules/
9+
.factorypath

pom.xml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>com.studiomediatech</groupId>
88
<artifactId>query-response-spring-amqp</artifactId>
9-
<version>0.9.0-SB2_3_6</version>
9+
<version>0.9.0-SB2_3_8</version>
1010
<packaging>jar</packaging>
1111

1212
<name>Query/Response for Spring AMQP</name>
@@ -23,7 +23,7 @@
2323
<parent>
2424
<groupId>org.springframework.boot</groupId>
2525
<artifactId>spring-boot-starter-parent</artifactId>
26-
<version>2.3.6.RELEASE</version>
26+
<version>2.3.8.RELEASE</version>
2727
</parent>
2828

2929
<dependencies>
@@ -43,6 +43,12 @@
4343
<groupId>org.springframework.boot</groupId>
4444
<artifactId>spring-boot-starter-test</artifactId>
4545
<scope>test</scope>
46+
<exclusions>
47+
<exclusion>
48+
<groupId>org.junit.vintage</groupId>
49+
<artifactId>junit-vintage-engine</artifactId>
50+
</exclusion>
51+
</exclusions>
4652
</dependency>
4753
<dependency>
4854
<groupId>org.springframework.amqp</groupId>

0 commit comments

Comments
 (0)