mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-08-02 06:55:38 +02:00
gradle: adds additional gradle examples (#1713)
This commit is contained in:
commit
391756661f
1 changed files with 9 additions and 1 deletions
|
@ -1,11 +1,19 @@
|
|||
# gradle
|
||||
|
||||
> Gradle is the official build system for Android Studio.
|
||||
> Gradle is an advanced open source build automation system.
|
||||
|
||||
- Compile a package:
|
||||
|
||||
`gradle build`
|
||||
|
||||
- Exclude test task:
|
||||
|
||||
`gradle build -x {{test}}`
|
||||
|
||||
- Run in offline mode to prevent gradle from accessing the network during builds:
|
||||
|
||||
`gradle build --offline`
|
||||
|
||||
- Clear the build folder:
|
||||
|
||||
`gradle clean`
|
||||
|
|
Loading…
Add table
Reference in a new issue