scan_dependencies
Scans Maven project dependencies to build a class-to-JAR mapping index for accurate dependency analysis and code generation.
Instructions
扫描Maven项目的所有依赖,建立类名到JAR包的映射索引
Input Schema
Name | Required | Description | Default |
---|---|---|---|
forceRefresh | No | 是否强制刷新索引 | |
projectPath | Yes | Maven项目根目录路径 |
Input Schema (JSON Schema)
{
"properties": {
"forceRefresh": {
"default": false,
"description": "是否强制刷新索引",
"type": "boolean"
},
"projectPath": {
"description": "Maven项目根目录路径",
"type": "string"
}
},
"required": [
"projectPath"
],
"type": "object"
}