build-time-tracker-plugin icon indicating copy to clipboard operation
build-time-tracker-plugin copied to clipboard

Gradle plugin to continuously track and report your build times

Results 21 build-time-tracker-plugin issues
Sort by recently updated
recently updated
newest added

currently, sample code in `README` are all `groovy` code, can we add some new sample code in `Kotlin` ?

1 problem was found storing the configuration cache. - Plugin 'net.rdrei.android.buildtimetracker': registration of listener on 'Gradle.addBuildListener' is unsupported See https://docs.gradle.org/7.3.2/userguide/configuration_cache.html#config_cache:requirements:build_listeners

Since this project is no longer maintained, I created a plugin that replaces this. https://github.com/asarkar/build-time-tracker

gradle > 6.5 currently throws a warning and will fail to compile after 7.0 with this plugin: ``` The BuildListener.buildStarted(Gradle) method has been deprecated. This is scheduled to be removed...

I'm on a Windows 10 system using https://cmder.net/ as a terminal. Executing a gradle build results in an exception: ``` == Build Time Summary == FAILURE: Build failed with an...

Hi, plugin is working tremendously well so far. A small feature request if I may? Not found anything in the search, please correct me is this already exists The plugin...

I think it could be useful having a new reporter (something like `NetworkReporter`) that sends the timings entries encoded in JSON to a simple remote endpoint, so to internally collect...

Simple PR to showcase the idea exposed in https://github.com/passy/build-time-tracker-plugin/issues/95.

We dropped in the plugin with the following configuration: ```gradle plugins { id 'net.rdrei.android.buildtimetracker' version '0.11.0' } buildtimetracker { reporters { csv { output "stats/build_times.csv" append true header true }...

Just added the plugin to my project to check how it works. Followed the guidelines suggested by the documentation. My config: Using `"net.rdrei.android.buildtimetracker:gradle-plugin:0.9.+"` ```groovy buildtimetracker { reporters { csv {...

bug
help wanted