mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-21 22:22:07 +02:00
gradle: Add spanish translation (#4728)
This commit is contained in:
parent
b5255686cd
commit
505f8016f5
1 changed files with 24 additions and 0 deletions
24
pages.es/common/gradle.md
Normal file
24
pages.es/common/gradle.md
Normal file
|
@ -0,0 +1,24 @@
|
|||
# gradle
|
||||
|
||||
> Gradle es un sistema de código abierto para automatizar la compilación de proyectos
|
||||
> Más información en: <https://gradle.org>.
|
||||
|
||||
- Compila un proyecto:
|
||||
|
||||
`gradle build`
|
||||
|
||||
- Excluye la tarea *test*:
|
||||
|
||||
`gradle build -x {{test}}`
|
||||
|
||||
- Ejecuta en modo offline para prevenir que gradle acceda a la red durante una compilación:
|
||||
|
||||
`gradle build --offline`
|
||||
|
||||
- Limpia el directorio de compilación:
|
||||
|
||||
`gradle clean`
|
||||
|
||||
- Compila y genera un paquete:
|
||||
|
||||
`gradle assembleRelease`
|
Loading…
Add table
Reference in a new issue