plugins {
id ‘org.sonarqube’ version ‘4.0.0.2929’
}
I have the following structure to my multi module project
app
-build.gradle
library
-build.gradle
app1
-build.gradle
app2
-build.gradle
app1 and app2 both have a dependency on library like
dependencies {
implementation project(‘:library’)
}
I am struggling to setup sonarqube so it does analysis on each application individually but upload results to the same project name… is this even possible?