Gradle Operations TODEPLETE: Difference between revisions
Jump to navigation
Jump to search
Line 11: | Line 11: | ||
{{External|https://docs.gradle.org/current/userguide/inspecting_dependencies.html}} | {{External|https://docs.gradle.org/current/userguide/inspecting_dependencies.html}} | ||
The full graph of the dependencies can be rendered. The selection reason and origin for a dependency can also be displayed. | The full graph of the project's [[Gradle_Concepts#Dependency|dependencies]] can be rendered. The selection reason and origin for a dependency can also be displayed. | ||
gradle dependencies | gradle dependencies |
Revision as of 00:42, 8 May 2018
Internal
Overview
Operations
Inspect Dependencies
The full graph of the project's dependencies can be rendered. The selection reason and origin for a dependency can also be displayed.
gradle dependencies
displays dependencies (classpaths) for various dependency configurations of the project.
Inspect the transitive dependency graph. TODO https://docs.gradle.org/current/userguide/inspecting_dependencies.html
Command-Line Interface
Tasks
build
Build without tests:
gradle build -x test gradle build -x :some-project:test
projects
gradle projects
tasks
gradle <project-path>:tasks
gradle :module1:tasks
properties
Displays project properties, properties added by various plugins and their default values.
gradle properties