Figure the classpath of failing tasks from third party plugin

I don’t know what I installed or changed today but I have now issue in running test for android project:

Execution failed for task ‘:database:mockableAndroidJar’.
org.objectweb.asm.tree.ClassNode.(I)V

Reading some answers on SO gives an idea that I have wrong asm in classpath of the task. Is there way to see this classpath?

You should be able to see detailed command lines if you run Gradle with “–debug” (perhaps even with “–info”?).

Thank you! You’re right I should just pay attention to the start of log. I also used snippet from Accessing the buildscript classpath which made the problem obvious.