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.
Add this plugin to your build using the plugins DSL:
plugins {
id("io.github.budius.slow-machine") version "0.0.1"
}
See also:
-
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts)
:dependencies { implementation("io.github.budius.slow-machine:io.github.budius.slow-machine.gradle.plugin:0.0.1") }
It can then be applied in the precompiled script plugin:plugins { id("io.github.budius.slow-machine") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("io.github.budius.slow-machine:io.github.budius.slow-machine.gradle.plugin:0.0.1") } } apply(plugin = "io.github.budius.slow-machine")
- Applying plugins to all subprojects .