From 96bd1d3866af0ae5e2f67524952f6bb4681ceb23 Mon Sep 17 00:00:00 2001 From: Helio Machado <0x2b3bfa0+git@googlemail.com> Date: Sat, 16 Oct 2021 02:29:29 +0200 Subject: [PATCH] Replace compile with implementation in build.gradle https://stackoverflow.com/a/66910991/4654476 --- build.gradle | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/build.gradle b/build.gradle index 39deaf16..722a33e6 100644 --- a/build.gradle +++ b/build.gradle @@ -17,13 +17,13 @@ sourceSets { } dependencies { - compile 'org.springframework:spring-aop:3.2.13.RELEASE', - 'org.springframework:spring-beans:3.2.13.RELEASE', - 'org.springframework:spring-context:3.2.13.RELEASE', - 'org.springframework:spring-core:3.2.13.RELEASE', - 'org.springframework:spring-expression:3.2.13.RELEASE' + implementation 'org.springframework:spring-aop:3.2.13.RELEASE', + 'org.springframework:spring-beans:3.2.13.RELEASE', + 'org.springframework:spring-context:3.2.13.RELEASE', + 'org.springframework:spring-core:3.2.13.RELEASE', + 'org.springframework:spring-expression:3.2.13.RELEASE' - testCompile 'junit:junit:4.8.2' + testImplementation 'junit:junit:4.8.2' } -mainClassName = 'com.seriouscompany.business.java.fizzbuzz.packagenamingpackage.impl.Main' \ No newline at end of file +mainClassName = 'com.seriouscompany.business.java.fizzbuzz.packagenamingpackage.impl.Main'