1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages/common/gradle.md

33 lines
490 B
Markdown
Raw Normal View History

# gradle
2015-12-30 23:04:51 +08:00
> Gradle is an open source build automation system.
2019-06-07 11:58:26 +01:00
> More information: <https://gradle.org>.
2015-12-30 23:04:51 +08:00
- Compile a package:
2015-12-30 23:04:51 +08:00
`gradle build`
- Exclude test task:
2017-12-11 21:13:19 +01:00
`gradle build -x {{test}}`
2017-12-11 21:13:19 +01:00
- Run in offline mode to prevent gradle from accessing the network during builds:
`gradle build --offline`
- Clear the build directory:
2015-12-30 23:04:51 +08:00
`gradle clean`
- Compile and Release package:
2015-12-30 23:04:51 +08:00
`gradle assembleRelease`
2021-05-06 17:23:16 +02:00
- List the main tasks:
`gradle tasks`
- List all the tasks:
`gradle tasks --all`