If you have a Gradle Java Project and you want to generate a dependency tree for it, you can make use of the Gradle command: ./gradlew dependencies
Example:% ./gradlew dependencies
> Task :dependencies
------------------------------------------------------------
Root project 'java-examples'
------------------------------------------------------------
annotationProcessor - Annotation processors and their dependencies for source set 'main'.
No dependencies
apiElements - API elements for main. (n)
No dependencies
archives - Configuration for archive artifacts. (n)
No dependencies
compileClasspath - Compile classpath for source set 'main'.
\--- com.google.code.gson:gson:2.3.1
compileOnly - Compile only dependencies for source set 'main'. (n)
No dependencies
default - Configuration for default artifacts. (n)
No dependencies
implementation - Implementation only dependencies for source set 'main'. (n)
\--- com.google.code.gson:gson:2.3.1 (n)
runtimeClasspath - Runtime classpath of source set 'main'.
\--- com.google.code.gson:gson:2.3.1
runtimeElements - Elements of runtime for main. (n)
No dependencies
runtimeOnly - Runtime only dependencies for source set 'main'. (n)
No dependencies
testAnnotationProcessor - Annotation processors and their dependencies for source set 'test'.
No dependencies
testCompileClasspath - Compile classpath for source set 'test'.
+--- com.google.code.gson:gson:2.3.1
\--- org.junit.jupiter:junit-jupiter-api:5.8.1
+--- org.junit:junit-bom:5.8.1
| +--- org.junit.jupiter:junit-jupiter-api:5.8.1 (c)
| \--- org.junit.platform:junit-platform-commons:1.8.1 (c)
+--- org.opentest4j:opentest4j:1.2.0
+--- org.junit.platform:junit-platform-commons:1.8.1
| +--- org.junit:junit-bom:5.8.1 (*)
| \--- org.apiguardian:apiguardian-api:1.1.2
\--- org.apiguardian:apiguardian-api:1.1.2
testCompileOnly - Compile only dependencies for source set 'test'. (n)
No dependencies
testImplementation - Implementation only dependencies for source set 'test'. (n)
\--- org.junit.jupiter:junit-jupiter-api:5.8.1 (n)
testRuntimeClasspath - Runtime classpath of source set 'test'.
+--- com.google.code.gson:gson:2.3.1
+--- org.junit.jupiter:junit-jupiter-api:5.8.1
| +--- org.junit:junit-bom:5.8.1
| | +--- org.junit.jupiter:junit-jupiter-api:5.8.1 (c)
| | +--- org.junit.jupiter:junit-jupiter-engine:5.8.1 (c)
| | +--- org.junit.platform:junit-platform-commons:1.8.1 (c)
| | \--- org.junit.platform:junit-platform-engine:1.8.1 (c)
| +--- org.opentest4j:opentest4j:1.2.0
| \--- org.junit.platform:junit-platform-commons:1.8.1
| \--- org.junit:junit-bom:5.8.1 (*)
\--- org.junit.jupiter:junit-jupiter-engine:5.8.1
+--- org.junit:junit-bom:5.8.1 (*)
+--- org.junit.platform:junit-platform-engine:1.8.1
| +--- org.junit:junit-bom:5.8.1 (*)
| +--- org.opentest4j:opentest4j:1.2.0
| \--- org.junit.platform:junit-platform-commons:1.8.1 (*)
\--- org.junit.jupiter:junit-jupiter-api:5.8.1 (*)
testRuntimeOnly - Runtime only dependencies for source set 'test'. (n)
\--- org.junit.jupiter:junit-jupiter-engine:5.8.1 (n)
(c) - dependency constraint
(*) - dependencies omitted (listed previously)
(n) - Not resolved (configuration is not meant to be resolved)
A web-based, searchable dependency report is available by adding the --scan option.
BUILD SUCCESSFUL in 608ms
1 actionable task: 1 executed
More Posts related to Gradle,
- Find installed Gradle version command
- How to Clear Gradle Cache on Mac
- Generate Project Dependency tree using Gradle Command
- How to create Gradle Multi-Project in IntelliJ
- Adding Jackson dependency to Java Gradle Project
- How to run Gradle build in offline mode
- Gradle FAILURE: Build failed with an exception - Task not found in root project
- Install Gradle VS Code for Java Projects
- Create a Gradle Java Project in VS Code
- Run IntelliJ Java main method without Gradle build
- Installing Gradle on macOS - Gradle Tutorial
- Task is ambiguous in root project gradle-examples. Candidates are: myTask1, myTask2
More Posts:
- Java: Round Up to 2 decimal places examples - Java
- How to run React Native App using Android Studio Emulator - Android-Studio
- [Fix] Cannot resolve No versions available for org.osgi.service:org.osgi.service.prefs:jar:[1.1.0,1.2.0) within specified range - Java
- Java - Calculate time taken for the code to execute in milliseconds or nanoseconds - Java
- Remove all stopped containers in Docker using prune command - Docker
- How to make a Android button act as a toggle button - Android
- java: ']' expected error [fixed] - Java
- How to Toggle Dark Mode in Microsoft 365 Word App on Mac - Microsoft