fix: hardcode xalan group ID (#2368)

According to maven central, the package called "xalan" should just have
the group ID xalan, but currently syft isn't able to find that.

Signed-off-by: Will Murphy <will.murphy@anchore.com>
This commit is contained in:
William Murphy 2023-11-28 14:40:03 -05:00 committed by GitHub
parent 1cfc4c7387
commit ea4a6747eb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1199,4 +1199,5 @@ var DefaultArtifactIDToGroupID = map[string]string{
"spring-webflow": "org.springframework.webflow",
"spring-ws": "org.springframework.ws",
"spring-xml": "org.springframework.ws",
"xalan": "xalan", // see https://mvnrepository.com/artifact/xalan/xalan/2.7.2
}