is this `task bower(dependsOn: ['gulp_bower'])` in...
# gradle
c
is this
task bower(dependsOn: ['gulp_bower'])
in groovy-dsl same as this
Copy code
val gulp_bower by tasks.getting
task("bower").dependsOn(gulp_bower)
in kotlin-dsl?