Skip to content

Instantly share code, notes, and snippets.

View fboldog's full-sized avatar

Ferenc Boldog fboldog

  • Budapest, Hungary
View GitHub Profile
@fboldog
fboldog / TaskExecTimeLogger.gradle
Last active August 29, 2015 14:10
Collect and print tasks execute times
//
// Collect and print tasks execute times
// init: addExecTimeLogger 50
//
ext.addExecTimeLogger = { minExecutionTime ->
gradle.addListener new TaskExecTimeLogger(minExecutionTime)
}
public class TaskExecTimeLogger implements TaskExecutionListener, BuildListener {
private Clock clock