We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9ee38db commit ef4fbe5Copy full SHA for ef4fbe5
1 file changed
src/classpath-builder.ts
@@ -87,7 +87,7 @@ function getDependencyPaths(modulePaths: string[], refresh = false) {
87
], { stdio: 'pipe' });
88
89
if (result.status !== 0) {
90
- throw new Error(`依赖解析失败: ${absPath}\n${result.stderr}`);
+ throw new Error(`依赖解析失败: ${absPath}\n尝试执行 mvn clean install -U \n${result.stdout?.toString()}`);
91
}
92
93
// 收集当前模块路径
0 commit comments