Repository: groovy Updated Branches: refs/heads/master ec75a2790 -> 067ac3e08
GROOVY-8773: Bump JUnit 5 platform to 1.3.0 Project: http://git-wip-us.apache.org/repos/asf/groovy/repo Commit: http://git-wip-us.apache.org/repos/asf/groovy/commit/067ac3e0 Tree: http://git-wip-us.apache.org/repos/asf/groovy/tree/067ac3e0 Diff: http://git-wip-us.apache.org/repos/asf/groovy/diff/067ac3e0 Branch: refs/heads/master Commit: 067ac3e08c1f7e3edf746664f6a0a3244876e4ed Parents: ec75a27 Author: jameskleeh <[email protected]> Authored: Fri Sep 7 18:01:27 2018 +1000 Committer: Paul King <[email protected]> Committed: Fri Sep 7 18:01:27 2018 +1000 ---------------------------------------------------------------------- subprojects/groovy-test-junit5/build.gradle | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/groovy/blob/067ac3e0/subprojects/groovy-test-junit5/build.gradle ---------------------------------------------------------------------- diff --git a/subprojects/groovy-test-junit5/build.gradle b/subprojects/groovy-test-junit5/build.gradle index d1f68a4..cda4ea7 100644 --- a/subprojects/groovy-test-junit5/build.gradle +++ b/subprojects/groovy-test-junit5/build.gradle @@ -18,14 +18,15 @@ */ ext { junit5Version = '5.3.0' + junit5PlatformVersion = '1.3.0' } 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') }
