Skip to content

Latest commit

 

History

History
53 lines (27 loc) · 2.92 KB

gradle-commands.md

File metadata and controls

53 lines (27 loc) · 2.92 KB

Gradle Commands.

Contents at a Glance.

About.

Documentation.

General Commands.

Key/Command Description
gradle tasks Get all tasks.
gradle -q tasks Get all tasks.
gradle [nameTask] Execute task whit name.
gradle -q [nameTask] Execute task whit name.
gradle build -x test Build and Skip tests.
gradle clean build -x test --info Build and Skip tests.
gradle clean assemble --info
gradle dependencies --configuration compile
gradle projects
gradle dependencies
gradle dependencies --configuration compile
gradle dependencies --configuration implementation
gradle dependencies --configuration testImplementation
gradle dependencies --configuration testRuntimeOnly

Help.