I need a way to generate dependency tree for test execution in my project that uses munit maven plugin and get all the dependencies that are downloaded as part of code coverage execution
I tried many options ( generating dpedency graph for munit maven plugin/ on mvn test etc) but i am not able To generate dependency tree for test execution
The regular dependency tree command is not giving the dependencies downloaded as part of munit code coverage execution
Any help would be highly appreciated
mvn -X ...)? edit the question to add a minimal reproducible example and show what is the expected output you are trying to get.mvn dependency:tree -Dscope=test? The munit is a. Maven plugin which uses it's own cllassloader and dependency tree for execution... the question is: The dependencies of the plugin? Of for your test execution?