Gradle Build: Try with setting baseDir for Sonar-runs, but likely still does not work
Update wrapper to 3.4.1, although we do not store it yet anyway git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1786681 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
7ae44605b5
commit
699ddabcdf
12
build.gradle
12
build.gradle
@ -45,7 +45,7 @@ allprojects {
|
|||||||
apply plugin: 'eclipse'
|
apply plugin: 'eclipse'
|
||||||
|
|
||||||
task wrapper(type: Wrapper) {
|
task wrapper(type: Wrapper) {
|
||||||
gradleVersion = '2.14.1'
|
gradleVersion = '3.4.1'
|
||||||
}
|
}
|
||||||
|
|
||||||
task adjustWrapperPropertiesFile {
|
task adjustWrapperPropertiesFile {
|
||||||
@ -129,6 +129,16 @@ subprojects {
|
|||||||
|
|
||||||
// ensure the build-dir exists
|
// ensure the build-dir exists
|
||||||
projectDir.mkdirs()
|
projectDir.mkdirs()
|
||||||
|
|
||||||
|
if (project.hasProperty('enableSonar')) {
|
||||||
|
sonarqube {
|
||||||
|
properties {
|
||||||
|
// as we currently use build/<module>/ as project-basedir, we need to tell Sonar to use
|
||||||
|
// the root-folder as "basedir" for the projects
|
||||||
|
property "sonar.projectBaseDir", "$projectDir/../.."
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
project('main') {
|
project('main') {
|
||||||
|
Loading…
Reference in New Issue
Block a user