Repository: groovy Updated Branches: refs/heads/GROOVY_2_5_X da5a042cf -> 1283ff4cf
GROOVY-8785: Bump JUnit 5 to 5.3.1 Project: http://git-wip-us.apache.org/repos/asf/groovy/repo Commit: http://git-wip-us.apache.org/repos/asf/groovy/commit/1283ff4c Tree: http://git-wip-us.apache.org/repos/asf/groovy/tree/1283ff4c Diff: http://git-wip-us.apache.org/repos/asf/groovy/diff/1283ff4c Branch: refs/heads/GROOVY_2_5_X Commit: 1283ff4cf3e8dc9de81e73c4d6276a52f697284c Parents: da5a042 Author: Paul King <[email protected]> Authored: Thu Sep 13 11:39:58 2018 +1000 Committer: Paul King <[email protected]> Committed: Thu Sep 13 11:42:25 2018 +1000 ---------------------------------------------------------------------- subprojects/groovy-test-junit5/build.gradle | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/groovy/blob/1283ff4c/subprojects/groovy-test-junit5/build.gradle ---------------------------------------------------------------------- diff --git a/subprojects/groovy-test-junit5/build.gradle b/subprojects/groovy-test-junit5/build.gradle index d1f68a4..12d134e 100644 --- a/subprojects/groovy-test-junit5/build.gradle +++ b/subprojects/groovy-test-junit5/build.gradle @@ -17,15 +17,16 @@ * under the License. */ ext { - junit5Version = '5.3.0' + junit5Version = '5.3.1' + junit5PlatformVersion = '1.3.1' } dependencies { compile rootProject - compile 'org.junit.platform:junit-platform-launcher:1.2.0' + compile "org.junit.platform:junit-platform-launcher:$junit5PlatformVersion" runtime "org.junit.jupiter:junit-jupiter-engine:$junit5Version" testCompile "org.junit.jupiter:junit-jupiter-params:$junit5Version" - testRuntime 'org.junit.platform:junit-platform-runner:1.2.0' + testRuntime "org.junit.platform:junit-platform-runner:$junit5PlatformVersion" testRuntime "org.junit.vintage:junit-vintage-engine:$junit5Version" testCompile project(':groovy-test') }
