Search Gradle plugins

com.github.janbarari.gradlebuildtimetracker

A lightweight console tool that shows you how much time you spent at Gradle build process. Simple analytics tells you time spent for the day, month, year, and also you can export it as a CSV file.

https://github.com/janbarari/GradleBuildTimeTracker/

Sources: https://github.com/janbarari/GradleBuildTimeTracker.git

Version 1.0.1 (latest)

Created 03 July 2021.

A lightweight console tool that shows you how much time you spent at Gradle build process. Simple analytics tells you time spent for the day, month, year, and also you can export it as a CSV file.

Using the plugins DSL:

plugins {
  id("com.github.janbarari.gradlebuildtimetracker") version "1.0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.github.janbarari:GradleBuildTimeTracker:1.0.1")
  }
}

apply(plugin = "com.github.janbarari.gradlebuildtimetracker")

Using the plugins DSL:

plugins {
  id "com.github.janbarari.gradlebuildtimetracker" version "1.0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.github.janbarari:GradleBuildTimeTracker:1.0.1"
  }
}

apply plugin: "com.github.janbarari.gradlebuildtimetracker"

Learn how to apply plugins to subprojects