scorecard
scorecard copied to clipboard
Feature: Look up GitHub repositories by Maven package URL
Is your feature request related to a problem? Please describe. Scorecard can look up GitHub repositories linked to Packages when the package comes from NPM, RubyGems, or PYPI.
Describe the solution you'd like Scorecard should look up the GitHub repository associated with a project if given a Maven package URL.
Stale issue message - this issue will be closed in 7 days
see #2687
This issue is stale because it has been open for 60 days with no activity.
As I see it, there are two variations of this:
- Not including a version, for example
com.fasterxml.jackson.core/jackson-databind. This would just check if there is a<url>tag in thepom.xmlof the latest release and invoke Scorecard with that URL. This is a very easy addition. - Including a version, for example
com.fasterxml.jackson.core:jackson-databind:2.19.1. This would do the same as above, but it would perform the Scorecard analysis from the tag that the version refers to. Currently Scorecard checks a project from now and back N commits, N days etc, so this requires some changes. However, it would unlock an entirely new use case, for example for users that want to scan their SBOM with Scorecard.