com.jdroid.gradle.timer.GradleTimerPlugin.groovy Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jdroid-gradle-timer-plugin Show documentation
Show all versions of jdroid-gradle-timer-plugin Show documentation
Jdroid Gradle Plugin to measure the build time of a project
package com.jdroid.gradle.timer
import org.gradle.api.Plugin
import org.gradle.api.Project
public class GradleTimerPlugin implements Plugin {
@Override
void apply(Project project) {
project.extensions.create("jdroidGradleTimer", GradleTimerExtension.class, this)
project.afterEvaluate {
if (project.jdroidGradleTimer.enableProfiling) {
project.gradle.addListener new TimingsListener(project.jdroidGradleTimer.profilingTag, project.jdroidGradleTimer.url)
}
}
}
}