Removing file reference for now on the snapshot

This commit is contained in:
Peter Murray
2022-10-27 15:13:04 +00:00
committed by GitHub
parent 1a47a774e2
commit 3b10bb10a7
3 changed files with 9 additions and 7 deletions
+4 -3
View File
@@ -35,9 +35,10 @@ class MavenDependencyGraph {
return this.cache.countPackages();
}
createManifest(filePath) {
// The project name is not shown in the UI when you utilize a file path currently, but the file path is required to link up to the repository file
// which is more beneficial at this point.
const manifest = new dependency_submission_toolkit_1.Manifest(this.getProjectName(), filePath);
// // The project name is not shown in the UI when you utilize a file path currently, but the file path is required to link up to the repository file
// // which is more beneficial at this point.
// const manifest = new Manifest(this.getProjectName(), filePath);
const manifest = new dependency_submission_toolkit_1.Manifest(this.getProjectName());
const packageUrlToArtifact = this.packageUrlToArtifact;
this.directDependencies.forEach(depPackage => {
const artifact = this.packageUrlToArtifact[depPackage.packageURL.toString()];
+1 -1
View File
File diff suppressed because one or more lines are too long
+4 -3
View File
@@ -69,9 +69,10 @@ export class MavenDependencyGraph {
}
createManifest(filePath?: string): Manifest {
// The project name is not shown in the UI when you utilize a file path currently, but the file path is required to link up to the repository file
// which is more beneficial at this point.
const manifest = new Manifest(this.getProjectName(), filePath);
// // The project name is not shown in the UI when you utilize a file path currently, but the file path is required to link up to the repository file
// // which is more beneficial at this point.
// const manifest = new Manifest(this.getProjectName(), filePath);
const manifest = new Manifest(this.getProjectName());
const packageUrlToArtifact = this.packageUrlToArtifact;
this.directDependencies.forEach(depPackage => {