2025-12-16 10:20:31 -07:00
|
|
|
# gradle build
|
|
|
|
|
|
|
|
|
|
> Build a project using Gradle.
|
2026-02-18 06:55:01 -07:00
|
|
|
> More information: <https://docs.gradle.org/current/userguide/command_line_interface.html#common_tasks>.
|
2025-12-16 10:20:31 -07:00
|
|
|
|
|
|
|
|
- Build the project:
|
|
|
|
|
|
|
|
|
|
`gradle build`
|
|
|
|
|
|
|
|
|
|
- Perform a clean build:
|
|
|
|
|
|
|
|
|
|
`gradle clean build`
|
|
|
|
|
|
|
|
|
|
- Build the project while skipping tests:
|
|
|
|
|
|
|
|
|
|
`gradle build {{[-x|--exclude-task]}} test`
|
|
|
|
|
|
|
|
|
|
- Build with more detailed logging:
|
|
|
|
|
|
|
|
|
|
`gradle build {{[-i|--info]}}`
|