From 70d3b7c443085169792892f430bb0aa41a76bf66 Mon Sep 17 00:00:00 2001 From: Karl Tauber Date: Sat, 7 Sep 2019 19:37:35 +0200 Subject: [PATCH] flatlaf-core/build.gradle.kts: use testImplementation() instead of deprecated testCompile() in dependencies --- flatlaf-core/build.gradle.kts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/flatlaf-core/build.gradle.kts b/flatlaf-core/build.gradle.kts index a455aceb..564f8d03 100644 --- a/flatlaf-core/build.gradle.kts +++ b/flatlaf-core/build.gradle.kts @@ -25,8 +25,8 @@ repositories { } dependencies { - testCompile( "com.miglayout:miglayout-swing:5.2" ) - testCompile( "com.jgoodies:jgoodies-forms:1.9.0" ) + testImplementation( "com.miglayout:miglayout-swing:5.2" ) + testImplementation( "com.jgoodies:jgoodies-forms:1.9.0" ) } java {