From 7f33c77d221f7b862bad013a694286f234d93eed Mon Sep 17 00:00:00 2001 From: Victor Date: Sat, 16 Sep 2017 11:15:53 +0300 Subject: [PATCH] Migrate to stable JUnit 5 --- app/build.gradle | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/app/build.gradle b/app/build.gradle index 6e1b797..e7c3772 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -18,9 +18,9 @@ dependencies { implementation 'org.fxmisc.richtext:richtextfx:0.6.10' compileOnly 'org.projectlombok:lombok:1.16.18' testCompileOnly 'org.projectlombok:lombok:1.16.18' - testRuntime 'org.junit.platform:junit-platform-launcher:1.0.0-RC2' - testRuntime 'org.junit.jupiter:junit-jupiter-engine:5.0.0-RC2' - testRuntime 'org.junit.vintage:junit-vintage-engine:4.12.0-RC2' - testRuntime 'org.junit.jupiter:junit-jupiter-params:5.0.0-RC2' + testRuntime 'org.junit.platform:junit-platform-launcher:1.0.0' + testRuntime 'org.junit.jupiter:junit-jupiter-engine:5.0.0' + testRuntime 'org.junit.vintage:junit-vintage-engine:4.12.0' + testRuntime 'org.junit.jupiter:junit-jupiter-params:5.0.0' testImplementation 'org.hamcrest:hamcrest-library:1.3' }