depgraph-maven-plugin@3.3.1 fixed transitive deps (#780)

Signed-off-by: Yan Zhang <yanzh@microsoft.com>
This commit is contained in:
Yan Zhang 2022-01-12 15:22:02 +08:00 коммит произвёл GitHub
Родитель 90d969f233
Коммит da69548f8d
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -44,7 +44,7 @@ export async function rawDependencyTree(pomPath: string): Promise<any> {
const dependencyGraphPath: string = `${outputPath}.deps.txt`;
const outputDirectory: string = path.dirname(dependencyGraphPath);
const outputFileName: string = path.basename(dependencyGraphPath);
await executeInBackground(`-N com.github.ferstl:depgraph-maven-plugin:graph -DgraphFormat=text -DshowDuplicates -DshowConflicts -DshowVersions -DshowGroupIds -DoutputDirectory="${outputDirectory}" -DoutputFileName="${outputFileName}"`, pomPath);
await executeInBackground(`-N com.github.ferstl:depgraph-maven-plugin:3.3.1:graph -DgraphFormat=text -DshowDuplicates -DshowConflicts -DshowVersions -DshowGroupIds -DoutputDirectory="${outputDirectory}" -DoutputFileName="${outputFileName}"`, pomPath);
return await readFileIfExists(path.join(outputDirectory, outputFileName));
}