{"id":31769970,"url":"https://github.com/jfrog/gradle-dep-tree","last_synced_at":"2025-11-01T08:04:30.727Z","repository":{"id":39800230,"uuid":"480307891","full_name":"jfrog/gradle-dep-tree","owner":"jfrog","description":"Gradle plugin that reads the Gradle dependencies of a given Gradle project, and generates a dependency tree.","archived":false,"fork":false,"pushed_at":"2025-09-17T10:43:24.000Z","size":128,"stargazers_count":13,"open_issues_count":8,"forks_count":12,"subscribers_count":4,"default_branch":"main","last_synced_at":"2025-09-17T11:44:14.327Z","etag":null,"topics":["dependency-graph","dependency-tree","gradle","jfrog","jfrog-idea-plugin"],"latest_commit_sha":null,"homepage":"","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/jfrog.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2022-04-11T09:16:25.000Z","updated_at":"2025-09-17T10:43:28.000Z","dependencies_parsed_at":"2023-10-10T13:29:22.172Z","dependency_job_id":"1713b942-854e-404c-99cd-19d172671e4c","html_url":"https://github.com/jfrog/gradle-dep-tree","commit_stats":null,"previous_names":[],"tags_count":8,"template":false,"template_full_name":null,"purl":"pkg:github/jfrog/gradle-dep-tree","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jfrog%2Fgradle-dep-tree","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jfrog%2Fgradle-dep-tree/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jfrog%2Fgradle-dep-tree/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jfrog%2Fgradle-dep-tree/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jfrog","download_url":"https://codeload.github.com/jfrog/gradle-dep-tree/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jfrog%2Fgradle-dep-tree/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279002519,"owners_count":26083403,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-10-10T02:00:06.843Z","response_time":62,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["dependency-graph","dependency-tree","gradle","jfrog","jfrog-idea-plugin"],"created_at":"2025-10-10T02:55:59.158Z","updated_at":"2025-10-10T02:56:03.680Z","avatar_url":"https://github.com/jfrog.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"[![Scanned by Frogbot](https://raw.github.com/jfrog/frogbot/master/images/frogbot-badge.svg)](https://github.com/jfrog/frogbot#readme)\n[![Test](https://github.com/jfrog/gradle-dep-tree/actions/workflows/test.yml/badge.svg?branch=main)](https://github.com/jfrog/gradle-dep-tree/actions/workflows/test.yml)\n\n# 🐘 Gradle Dependency Tree\n\nThis Gradle plugin reads the Gradle dependencies of a given Gradle project, and generates a dependency tree. This\npackage was developed by JFrog, and is used by the [JFrog IntelliJ IDEA Plugin](https://plugins.jetbrains.com/plugin/9834-jfrog)\nto generate the dependency tree for projects using Gradle dependencies. You may find this plugin useful for other\npurposes and applications as well, by applying it in your build.gradle file.\n\n## 🖥️ Usage\n\nInject the plugin using the [init.gradle](./init.gradle) initialization script, and run *generateDepTrees* in a\ndirectory containing a build.gradle file. The plugin will generate a dependency tree for each subproject that does not\ncontain a build.gradle file. To generate a dependency tree for each subproject that contains a Gradle build file, set the `-Dcom.jfrog.includeAllBuildFiles` flag to `true`.\n\nThe command:\n\n```bash\ngradle clean generateDepTrees -I \u003cpath/to/init.gradle\u003e -q -Dcom.jfrog.depsTreeOutputFile=\u003cpath/to/output/file\u003e\n```\n\nOutput:\n\n```\n\"\u003cpath/to/dependency/tree1\u003e\"\n\"\u003cpath/to/dependency/tree2\u003e\"\n...\n```\n\n## 🌲 Output Tree Structure\n\n```json\n{\n  \"root\": \"org.jfrog.example.gradle:shared:1.0-SNAPSHOT\",\n  \"nodes\": {\n    \"junit:junit:4.7\": {\n      \"unresolved\": false,\n      \"configurations\": [\"testCompileClasspath\", \"testImplementation\", \"testRuntimeClasspath\"],\n      \"children\": []\n    },\n    \"org.jfrog.example.gradle:shared:1.0-SNAPSHOT\": {\n      \"unresolved\": false,\n      \"configurations\": [\"compileClasspath\", \"runtimeClasspath\", \"testCompileClasspath\", \"testRuntimeClasspath\"],\n      \"children\": [\"junit:junit:4.7\"]\n    }\n  }\n}\n```\n\n## 💻 Contributions\n\nWe welcome pull requests from the community. To help us improve this project, please read\nour [contribution](./CONTRIBUTING.md#-guidelines) guide.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjfrog%2Fgradle-dep-tree","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjfrog%2Fgradle-dep-tree","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjfrog%2Fgradle-dep-tree/lists"}