--- syntax: markdown tags: [tldr, common] source: https://github.com/tldr-pages/tldr.git --- # gradle build > Build a project using Gradle. > More information: . - 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]}}`