# gda **Repository Path**: leexgone/gda ## Basic Information - **Project Name**: gda - **Description**: Gradle依赖分析工具 - **Primary Language**: Rust - **License**: Apache-2.0 - **Default Branch**: dev - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-05-06 - **Last Updated**: 2022-05-20 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # gda - Gradle Dependencies Analyzer ## 介绍 Gradle依赖分析工具,可以对Java Gradle工程依赖进行分析 ## 安装 1. 下载源代码 2. 下载并安装rust开发环境 3. 编译程序: `cargo build --release` ## 使用 查看帮助: ``` shell gda.exe help gda.exe help check ``` 读取已有的依赖文件并校验: ``` shell gda.exe ./deps.txt -v check ``` 使用管道实时读取gradle依赖分析结果并校验: ``` shell gradle :dependencies | gda.exe -v check ``` 打印依赖树形: ``` shell gda.exe ./deps.txt print ``` 罗列引用的组件列表: ``` shell gda.exe ./deps.txt list ```