问题
We are moved from maven to gradle, In maven, with the build command, we can clearly see the nexus URLs from where the dependencies are fetched.
With gradle how could I see the dependency URLs while the project is building? Is there any command line option that does this in gradle.
回答1:
Log level details related to dependency downloads are not shown by default with gradle.
To enable these dependency download logs, pass the --info
option or simply --i
flag with gradle command and it will print the dependency download URLs on the console.
来源:https://stackoverflow.com/questions/53996400/gradle-how-print-the-dependency-artifact-urls-on-console