Skip to content

Commit 0998d57

Browse files
committed
avoid using deprecated configurations in the gradle plugin build script
1 parent cb412dd commit 0998d57

File tree

1 file changed

+6
-6
lines changed
  • spring-boot-project/spring-boot-tools/spring-boot-gradle-plugin

1 file changed

+6
-6
lines changed

spring-boot-project/spring-boot-tools/spring-boot-gradle-plugin/build.gradle

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,12 @@ repositories {
2121
}
2222

2323
dependencies {
24-
compile localGroovy()
25-
compile gradleApi()
26-
compile fileTree(dir: 'target/dependencies/compile', include: '*.jar')
27-
testCompile gradleTestKit()
28-
testCompile 'org.apache.commons:commons-compress:1.13'
29-
testCompile fileTree(dir: 'target/dependencies/test', include: '*.jar')
24+
implementation localGroovy()
25+
implementation gradleApi()
26+
implementation fileTree(dir: 'target/dependencies/compile', include: '*.jar')
27+
testImplementation gradleTestKit()
28+
testImplementation 'org.apache.commons:commons-compress:1.13'
29+
testImplementation fileTree(dir: 'target/dependencies/test', include: '*.jar')
3030
}
3131

3232
jar {

0 commit comments

Comments
 (0)