We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a2ddaf4 commit a14ddf7Copy full SHA for a14ddf7
1 file changed
build.gradle
@@ -91,14 +91,14 @@ tasks {
91
}
92
93
tasks.register('downloadDependencies') {
94
- description 'Download all dependencies to the Gradle cache'
+ description = 'Download all dependencies to the Gradle cache'
95
doLast {
96
- configurations.findAll { it.canBeResolved }.files
+ configurations.matching { it.canBeResolved }.each { it.resolve() }
97
98
99
100
tasks.register("publishJar") {
101
- description 'Publish the JAR where need to go'
+ description = 'Publish the JAR where need to go'
102
103
dependsOn publish
104
mustRunAfter publish
0 commit comments