Is there a way, in a gradle plugin, to preprocess dependency classes using frameworks like ASM?
I am trying to create an access transformer, to strip private/protected access from certain dependencies, and the best way I can think of doing this would be to modify the dependency classes bytecode.
Thanks