Skip to content

Commit 52b58f3

Browse files
committed
Drop CI support for Spring Boot 2.1-2.4 on latest development version(2.2.x) #562
1 parent 06354bb commit 52b58f3

File tree

2 files changed

+0
-44
lines changed

2 files changed

+0
-44
lines changed

.github/workflows/support.yaml

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -41,15 +41,3 @@ jobs:
4141
run: |
4242
./mvnw test
4343
./mybatis-spring-boot-samples/run_fatjars.sh
44-
- name: Test with Spring Boot 2.3
45-
run: |
46-
./mvnw test -Dspring-boot.version=$(./scripts/get_latest_version.sh 2.3)
47-
./mybatis-spring-boot-samples/run_fatjars.sh
48-
- name: Test with Spring Boot 2.2
49-
run: |
50-
./mvnw test -Dspring-boot.version=$(./scripts/get_latest_version.sh 2.2)
51-
./mybatis-spring-boot-samples/run_fatjars.sh
52-
- name: Test with Spring Boot 2.1
53-
run: |
54-
./mvnw test -Dspring-boot.version=$(./scripts/get_latest_version.sh 2.1) -Dspring-boot.version.line=2.1.x
55-
./mybatis-spring-boot-samples/run_fatjars.sh

pom.xml

Lines changed: 0 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -159,13 +159,6 @@
159159
<groupId>org.springframework.boot</groupId>
160160
<artifactId>spring-boot-starter-test</artifactId>
161161
<version>${spring-boot.version}</version>
162-
<exclusions>
163-
<!-- Only matters for 2.3 and earlier code lines as removed in latest -->
164-
<exclusion>
165-
<groupId>org.junit.vintage</groupId>
166-
<artifactId>junit-vintage-engine</artifactId>
167-
</exclusion>
168-
</exclusions>
169162
</dependency>
170163
</dependencies>
171164
</dependencyManagement>
@@ -212,29 +205,4 @@
212205
</pluginRepository>
213206
</pluginRepositories>
214207

215-
<profiles>
216-
<profile>
217-
<id>spring-boor-2.1.x</id>
218-
<activation>
219-
<property>
220-
<name>spring-boot.version.line</name>
221-
<value>2.1.x</value>
222-
</property>
223-
</activation>
224-
<dependencies>
225-
<dependency>
226-
<groupId>org.junit.jupiter</groupId>
227-
<artifactId>junit-jupiter-engine</artifactId>
228-
<scope>test</scope>
229-
</dependency>
230-
<dependency>
231-
<groupId>org.assertj</groupId>
232-
<artifactId>assertj-core</artifactId>
233-
<version>3.19.0</version>
234-
<scope>test</scope>
235-
</dependency>
236-
</dependencies>
237-
</profile>
238-
</profiles>
239-
240208
</project>

0 commit comments

Comments
 (0)