aboutsummaryrefslogtreecommitdiffstats
path: root/build.gradle
diff options
context:
space:
mode:
authorPhilippe Perrin <philippe.perrin@sonarsource.com>2021-11-30 19:18:45 +0100
committersonartech <sonartech@sonarsource.com>2021-12-01 20:03:34 +0000
commit923bf12cb317a9422d1053b4c2b8fd93bbe0e464 (patch)
tree9a7d97f53ea3997f43906ecc31af124060d90bfc /build.gradle
parent3a80d2056bab7773658fcbcd00c9b2b8d2e4ba77 (diff)
downloadsonarqube-923bf12cb317a9422d1053b4c2b8fd93bbe0e464.tar.gz
sonarqube-923bf12cb317a9422d1053b4c2b8fd93bbe0e464.zip
[NO-JIRA] Remove Gradle time tracker plugin
Diffstat (limited to 'build.gradle')
-rw-r--r--build.gradle12
1 files changed, 0 insertions, 12 deletions
diff --git a/build.gradle b/build.gradle
index 17b73f906e1..621ecc1794e 100644
--- a/build.gradle
+++ b/build.gradle
@@ -9,23 +9,11 @@ plugins {
id 'com.google.protobuf' version '0.8.18' apply false
id 'com.jfrog.artifactory' version '4.24.23'
id 'io.spring.dependency-management' version '1.0.11.RELEASE'
- id "com.asarkar.gradle.build-time-tracker" version "2.1.0" apply false
id 'org.owasp.dependencycheck' version '6.3.2'
id 'org.sonarqube' version '3.3'
id "de.undercouch.download" version "4.1.2" apply false
}
-// display a summary of task durations at the end of the build
-if (project.hasProperty('time-tracker')) {
- apply plugin: 'com.asarkar.gradle.build-time-tracker'
- buildTimeTracker {
- sort = true
- maxWidth = 80
- minTaskDuration = Duration.ofSeconds(1)
- }
-}
-
-
if (!JavaVersion.current().java11Compatible) {
throw new GradleException("JDK 11+ is required to perform this build. It's currently " + System.getProperty("java.home") + ".")
}