Skip to content

Commit ce21fa4

Browse files
committed
Upgrade to JUnit 5.0 M4
Issue: SPR-15361
1 parent 73b4482 commit ce21fa4

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,8 +70,8 @@ configure(allprojects) { project ->
7070
ext.jspVersion = "2.3.2-b02"
7171
ext.jtaVersion = "1.2"
7272
ext.junitVersion = "4.12"
73-
ext.junitJupiterVersion = '5.0.0-M3'
74-
ext.junitPlatformVersion = '1.0.0-M3'
73+
ext.junitJupiterVersion = '5.0.0-M4'
74+
ext.junitPlatformVersion = '1.0.0-M4'
7575
ext.kotlinVersion = "1.1.1" // also change kotlin-gradle-plugin version when upgrading
7676
ext.log4jVersion = '2.8.1'
7777
ext.nettyVersion = "4.1.9.Final"

spring-test/src/test/java/org/springframework/test/context/junit/SpringJUnitJupiterTestSuite.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2002-2016 the original author or authors.
2+
* Copyright 2002-2017 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -16,11 +16,11 @@
1616

1717
package org.springframework.test.context.junit;
1818

19-
import org.junit.platform.runner.IncludeClassNamePatterns;
20-
import org.junit.platform.runner.IncludeEngines;
2119
import org.junit.platform.runner.JUnitPlatform;
22-
import org.junit.platform.runner.SelectPackages;
23-
import org.junit.platform.runner.UseTechnicalNames;
20+
import org.junit.platform.suite.api.IncludeClassNamePatterns;
21+
import org.junit.platform.suite.api.IncludeEngines;
22+
import org.junit.platform.suite.api.SelectPackages;
23+
import org.junit.platform.suite.api.UseTechnicalNames;
2424
import org.junit.runner.RunWith;
2525

2626
/**

0 commit comments

Comments
 (0)