-
Notifications
You must be signed in to change notification settings - Fork 102
Open
Description
When parsing jar files, go-dep-parser validates GAV info against maven repo when pom.properties is not found
And in the validation, artifactVersion is currently being ignored.
go-dep-parser/pkg/java/jar/parse.go
Lines 141 to 148 in 48d70d5
| if manifestProps.Valid() { | |
| // Even if MANIFEST.MF is found, the groupId and artifactId might not be valid. | |
| // We have to make sure that the artifact exists actually. | |
| if ok, _ := p.client.Exists(manifestProps.GroupID, manifestProps.ArtifactID); ok { | |
| // If groupId and artifactId are valid, they will be returned. | |
| return append(libs, manifestProps.Library()), nil, nil | |
| } | |
| } |
Is this intentional ? (any reason for not including version here)
Thanks in advance.
Metadata
Metadata
Assignees
Labels
No labels