Browse Source

[NO-JIRA] Remove Gradle time tracker plugin

tags/9.3.0.51899
Philippe Perrin 2 years ago
parent
commit
923bf12cb3
1 changed files with 0 additions and 12 deletions
  1. 0
    12
      build.gradle

+ 0
- 12
build.gradle View File

@@ -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") + ".")
}

Loading…
Cancel
Save