How can i find all the dependencies ( including interinsic dependencies ) for org.sonarsource.scanner.gradle:sonarqube-gradle-plugin:1.2
Hi Kamal,
We currently don’t have a way of showing transitive dependencies for a plugin in your buildscript. I found a quick workaround by heading over to Github where the source code is hosted, cloning the repo and running the ./gradlew dependencies
task inside the project root.
For your convenience I already ran this and attached the results below.
Hope this helps!
Marco.
deps.zip (1.8 KB)
1 Like
And subsequently we did find another way! You can simply run ./gradlew buildEnvironment
to get a dependency tree of any plugins that you might have in your project.
1 Like