Skip to content

Commit a14ddf7

Browse files
committed
chore: fix gradle warnings
1 parent a2ddaf4 commit a14ddf7

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -91,14 +91,14 @@ tasks {
9191
}
9292

9393
tasks.register('downloadDependencies') {
94-
description 'Download all dependencies to the Gradle cache'
94+
description = 'Download all dependencies to the Gradle cache'
9595
doLast {
96-
configurations.findAll { it.canBeResolved }.files
96+
configurations.matching { it.canBeResolved }.each { it.resolve() }
9797
}
9898
}
9999

100100
tasks.register("publishJar") {
101-
description 'Publish the JAR where need to go'
101+
description = 'Publish the JAR where need to go'
102102

103103
dependsOn publish
104104
mustRunAfter publish

0 commit comments

Comments
 (0)