I want to get a list of tarball URLs (or similar) of all dependencies in a Go project. I tried to achieve this with 'go list dependency' but I see no possibility to get the source URL of a dependency. How can I get the URL?
For the current directory you get the imports by: go list -f '{{join .Imports " "}}' .