Mercurial > public > develkit
comparison init40.gradle @ 265:d8c2e57428b3
remove println
author | smith@nwoca.org |
---|---|
date | Tue, 13 Nov 2018 23:26:27 +0000 |
parents | d063b759e419 |
children | 3f891f6587f1 |
comparison
equal
deleted
inserted
replaced
264:d063b759e419 | 265:d8c2e57428b3 |
---|---|
266 configurations.findAll { | 266 configurations.findAll { |
267 it.canBeResolved | 267 it.canBeResolved |
268 }.findAll { c -> | 268 }.findAll { c -> |
269 def n = c.name.toLowerCase() | 269 def n = c.name.toLowerCase() |
270 ['compile','runtime','provided'].any { n.contains(it) } | 270 ['compile','runtime','provided'].any { n.contains(it) } |
271 }.each { | 271 }.each { |
272 println "resolving $it" | |
273 it.resolve() | 272 it.resolve() |
274 } | 273 } |
275 } | 274 } |
276 } | 275 } |
277 | 276 |