We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Currently project-keeper's java class GolangServices uses
GolangServices
go list -f "{{if not .Indirect}}{{.}}{{end}}" -m all
and applies go-licenses csv to each entry.
go-licenses csv
This fails for repository project-overview, which currently has dependencies to
To fix project-keeper go list needs to be called like this:
go list -f "{{if .Module}}{{if not .Module.Indirect}}{{.ImportPath}} {{.Module.Version}}{{end}}{{end}}" all
See also https://pkg.go.dev/cmd/go#hdr-List_packages_or_modules
The text was updated successfully, but these errors were encountered:
Observation: proposed solution tends to list too many modules.
Sorry, something went wrong.
#331: Accept module prefix for matching license
092b477
#331 Fixed retrieving Golang dependencies
0ad2e03
#331 Fix tests
1838c10
#331 Fix retrieving golang dependencies (#335)
ebbb7ef
* #331: Accept module prefix for matching license * #331 Fixed retrieving Golang dependencies Co-authored-by: Thomas Ubensee <[email protected]>
kaklakariada
Successfully merging a pull request may close this issue.
Currently project-keeper's java class
GolangServices
usesand applies
go-licenses csv
to each entry.This fails for repository project-overview, which currently has dependencies to
To fix project-keeper go list needs to be called like this:
See also https://pkg.go.dev/cmd/go#hdr-List_packages_or_modules
The text was updated successfully, but these errors were encountered: