mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-03-10 14:58:17 +00:00
Update cheatsheets
This commit is contained in:
25
tldr/gradle-properties
Normal file
25
tldr/gradle-properties
Normal file
@@ -0,0 +1,25 @@
|
||||
---
|
||||
syntax: markdown
|
||||
tags: [tldr, common]
|
||||
source: https://github.com/tldr-pages/tldr.git
|
||||
---
|
||||
# gradle properties
|
||||
|
||||
> Display the properties of a Gradle project.
|
||||
> More information: <https://docs.gradle.org/current/userguide/command_line_interface.html#listing_project_properties>.
|
||||
|
||||
- Display all project properties:
|
||||
|
||||
`gradle properties`
|
||||
|
||||
- Display properties with detailed output:
|
||||
|
||||
`gradle properties {{[-i|--info]}}`
|
||||
|
||||
- Display properties for a specific subproject:
|
||||
|
||||
`gradle :{{subproject}}:properties`
|
||||
|
||||
- Display a specific property value:
|
||||
|
||||
`gradle properties | grep {{property_name}}`
|
||||
Reference in New Issue
Block a user