
net.rdrei.android.buildtimetracker.reporters.AbstractBuildTimeTrackerReporter.groovy Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gradle-plugin Show documentation
Show all versions of gradle-plugin Show documentation
Gradle plugin which tracks your build times.
The newest version!
package net.rdrei.android.buildtimetracker.reporters
import net.rdrei.android.buildtimetracker.Timing
import org.gradle.BuildResult
import org.gradle.api.logging.Logger
abstract class AbstractBuildTimeTrackerReporter {
Map options
Logger logger
AbstractBuildTimeTrackerReporter(Map options, Logger logger) {
this.options = options
this.logger = logger
}
abstract run(List timings)
String getOption(String name, String defaultVal) {
options[name] == null ? defaultVal : options[name]
}
void onBuildResult(BuildResult result) {}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy