SonarQube is not able to handle this structure and always throwing below error
The base directory of the module ‘:submodule’ does not exist: ../[xxx]/submodule
basically gradle can handle this configuration but sonarQube is failed to detect and report above error due to two columns exists in module path configuration
how do i resolve this issue and any other advise to run sonaryQube for all module ?
Appreciating you for checking this question ,
version of sonarQube gradle is 6.0.1.5171
Server * Community Build v25.4.0.105899
Here is the structure of the project to give you basic idea , i will get the sample project created and shared here as soon as i can
App /build.gradle
module |
_ logging(folder)
|
|-> data /build.gradle
| _ Iml /build.gradle
gradle configuration like this
include(“:logging:data)
project(XXX)
include(”:logging:impl)
Erorr : The base directory of the module ‘:submodule’ does not exist: ../[xxx]/submodule
Therefore , my understanding with error is sonarQube is failing to parse value after “:logging” and stating logging directory does not exists
I will try to get the sample project as soon as i can. thank you