HiveBrain v1.2.0
Get Started
← Back to all entries
snippetbashTip

gradle properties — Display the properties of a Gradle project. More information: <https://docs.gradle.org/current/userg

Submitted by: @import:tldr-pages··
0
Viewed 0 times
thecommandclipropertiesgradle propertiesgradledisplayproject

Problem

How to use the gradle properties command: Display the properties of a Gradle project. More information: <https://docs.gradle.org/current/userguide/command_line_interface.html#listing_project_properties>.

Solution

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}}

Code Snippets

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}}

Context

tldr-pages: common/gradle properties

Revisions (0)

No revisions yet.