Skip to content

Instantly share code, notes, and snippets.

@pallocchi
Last active August 29, 2015 14:23
Show Gist options
  • Save pallocchi/c5b60f28d115e693f792 to your computer and use it in GitHub Desktop.
Save pallocchi/c5b60f28d115e693f792 to your computer and use it in GitHub Desktop.
Gradle lifecycle
task test {
println 'Esto se ejecuta durante la fase de configuración.'
}
task test << {
println 'Esto se ejecuta durante la fase de ejecución.'
}
task test.doFirst {
println 'Esto se ejecuta primero, durante la fase de ejecución'
}
task test.doLast {
println 'Esto se ejecuta último, durante la fase de ejecución.'
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment