Sorry, for spamming but this is a huge blocker for me right now.
What I've tried so far :
* detaching sub-modules - for the analysis run I wanted to convert the multi-module project into single-module an execute it additionally - doesn't work since the sub-module deps are missing
* creating an artificial root module that includes the current one and adding some configuration around (just to run the analysis)- sounded like a great idea but the building goes crazy since the module dependencies paths are now incorrect (dependant on the path to root project `:module1` is now `:fakeRoot:module1`)
* copy the src to a fake sub module for the analysis run - also sounded like a good idea since I'm relying only on the static analysis of files but then I realised that the file paths will be incorrect when a violation is raised (I'm using GH PR analysis runs to mark violations in src)
* creating fake modules in all directories where source is defined - that would require a lot of gradle code with possibly duplicated build files - I abandoned this idea
Do you guys have any other idea how to trick Gradle to analyse my root module?
Kuba