Skip to content

Commit dbaefff

Browse files
committed
Switch baseline to Spring Boot 2.3
Fixes mybatisgh-427
1 parent c186f61 commit dbaefff

File tree

3 files changed

+10
-1
lines changed

3 files changed

+10
-1
lines changed

.travis.yml

+1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ cache:
1717

1818
script:
1919
- ./mvnw clean verify
20+
- ./mvnw clean verify -Dspring-boot.version=2.2.7.RELEASE
2021
- ./mvnw clean verify -Dspring-boot.version=2.1.13.RELEASE -Dspring-boot.version.line=2.1.x
2122

2223
after_success:

mybatis-spring-boot-test-autoconfigure/pom.xml

+8
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,18 @@
3030
<module.name>org.mybatis.spring.boot.test.autoconfigure</module.name>
3131
</properties>
3232
<dependencies>
33+
<dependency>
34+
<groupId>org.springframework.boot</groupId>
35+
<artifactId>spring-boot-autoconfigure</artifactId>
36+
</dependency>
3337
<dependency>
3438
<groupId>org.springframework.boot</groupId>
3539
<artifactId>spring-boot-test-autoconfigure</artifactId>
3640
</dependency>
41+
<dependency>
42+
<groupId>org.springframework.boot</groupId>
43+
<artifactId>spring-boot-test</artifactId>
44+
</dependency>
3745
<dependency>
3846
<groupId>org.springframework</groupId>
3947
<artifactId>spring-test</artifactId>

pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@
7272
<mybatis-freemarker.version>1.2.1</mybatis-freemarker.version>
7373
<mybatis-velocity.version>2.1.0</mybatis-velocity.version>
7474
<mybatis-thymeleaf.version>1.0.1</mybatis-thymeleaf.version>
75-
<spring-boot.version>2.2.7.RELEASE</spring-boot.version>
75+
<spring-boot.version>2.3.0.RELEASE</spring-boot.version>
7676

7777
<!-- Remove after parent 32 (support for jdk 13) -->
7878
<jacoco.version>0.8.5</jacoco.version>

0 commit comments

Comments
 (0)