Removing file reference for now on the snapshot
This commit is contained in:
Vendored
+4
-3
@@ -35,9 +35,10 @@ class MavenDependencyGraph {
|
|||||||
return this.cache.countPackages();
|
return this.cache.countPackages();
|
||||||
}
|
}
|
||||||
createManifest(filePath) {
|
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
|
// // 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.
|
// // which is more beneficial at this point.
|
||||||
const manifest = new dependency_submission_toolkit_1.Manifest(this.getProjectName(), filePath);
|
// const manifest = new Manifest(this.getProjectName(), filePath);
|
||||||
|
const manifest = new dependency_submission_toolkit_1.Manifest(this.getProjectName());
|
||||||
const packageUrlToArtifact = this.packageUrlToArtifact;
|
const packageUrlToArtifact = this.packageUrlToArtifact;
|
||||||
this.directDependencies.forEach(depPackage => {
|
this.directDependencies.forEach(depPackage => {
|
||||||
const artifact = this.packageUrlToArtifact[depPackage.packageURL.toString()];
|
const artifact = this.packageUrlToArtifact[depPackage.packageURL.toString()];
|
||||||
|
|||||||
Vendored
+1
-1
File diff suppressed because one or more lines are too long
+4
-3
@@ -69,9 +69,10 @@ export class MavenDependencyGraph {
|
|||||||
}
|
}
|
||||||
|
|
||||||
createManifest(filePath?: string): Manifest {
|
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
|
// // 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.
|
// // which is more beneficial at this point.
|
||||||
const manifest = new Manifest(this.getProjectName(), filePath);
|
// const manifest = new Manifest(this.getProjectName(), filePath);
|
||||||
|
const manifest = new Manifest(this.getProjectName());
|
||||||
const packageUrlToArtifact = this.packageUrlToArtifact;
|
const packageUrlToArtifact = this.packageUrlToArtifact;
|
||||||
|
|
||||||
this.directDependencies.forEach(depPackage => {
|
this.directDependencies.forEach(depPackage => {
|
||||||
|
|||||||
Reference in New Issue
Block a user