Skip to content

Instantly share code, notes, and snippets.

@amadeu01
Created March 13, 2018 18:51
Show Gist options
  • Save amadeu01/58e90abfeda81dad5c911d3fef45df83 to your computer and use it in GitHub Desktop.
Save amadeu01/58e90abfeda81dad5c911d3fef45df83 to your computer and use it in GitHub Desktop.
My example of gradle file
import java.time.*
task helloWorld {
description = 'My hello world'
doLast {
println "Hello World"
}
}
task printDate {
description = 'Print date'
doLast {
println new Date()
println LocalDateTime.now()
}
}
@amadeu01
Copy link
Author

You can run it by type

gradle hW
gradle pD

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment