diff options
author | Steve Marion <steve.marion@sonarsource.com> | 2023-09-14 11:45:41 +0200 |
---|---|---|
committer | sonartech <sonartech@sonarsource.com> | 2023-09-14 20:02:39 +0000 |
commit | 7a48218054fddf97a91ce3852406d285e7fa2219 (patch) | |
tree | 221052a98cc3e309c374079eb4afa560120c7c73 /build.gradle | |
parent | a64c351b61b936191019e41a568d38feec4aff43 (diff) | |
download | sonarqube-7a48218054fddf97a91ce3852406d285e7fa2219.tar.gz sonarqube-7a48218054fddf97a91ce3852406d285e7fa2219.zip |
SONAR-20268 fix property enabling
Diffstat (limited to 'build.gradle')
-rw-r--r-- | build.gradle | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/build.gradle b/build.gradle index ff485c11d2a..3bda668674c 100644 --- a/build.gradle +++ b/build.gradle @@ -65,7 +65,7 @@ allprojects { ext { release = project.hasProperty('release') && project.getProperty('release') official = project.hasProperty('official') && project.getProperty('official') - withTestMonitoring = project.hasProperty('withTestMonitoring') + testMonitoringEnabled = project.hasProperty('withTestMonitoring') } ext.enableBom = enableBom @@ -681,7 +681,7 @@ subprojects { } } - if (ext.withTestMonitoring) { + if (ext.testMonitoringEnabled) { tasks.withType(Test) { doFirst { ext { |