Udacity - Building w/ Gradle
31 Aug 2017- Project
- can be made up of one or more Tasks
- Tasks
- contain Actions
- can depend on other Tasks
task A(dependsOn 'B')
- can define Inputs/Outputs
- new tasks can be defined w/
tasks NAME {}
- we can define
defaultTasks
which are triggered when we run gradle
- typically we use a gradle wrapper
- Gradle daemon can be stopped w/
gradle --stop
- there is a configuration phase and an execution phase