Search Gradle plugins

io.github.budius.slow-machine

Owner: Budius

Inspired by a real life scenario, this small utility tracks how long you've been sitting around and waiting for your computer to compile. It saves in a simple properties format and could be helpful to make the IT departmentto get you a new computer with faster processor and more RAM.

https://github.com/budius/slowGradleMachine

Sources: https://github.com/budius/slowGradleMachine.git

Version 0.0.1 (latest)

Created 29 August 2022.

Inspired by a real life scenario, this small utility tracks how long you've been sitting around and waiting for your computer to compile. It saves in a simple properties format and could be helpful to make the IT departmentto get you a new computer with faster processor and more RAM.

Using the plugins DSL:

plugins {
  id("io.github.budius.slow-machine") version "0.0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("io.github.budius:slow-gradle-machine:0.0.1")
  }
}

apply(plugin = "io.github.budius.slow-machine")

Using the plugins DSL:

plugins {
  id "io.github.budius.slow-machine" version "0.0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "io.github.budius:slow-gradle-machine:0.0.1"
  }
}

apply plugin: "io.github.budius.slow-machine"

Learn how to apply plugins to subprojects