me.haroldmartin.gradle.caffeinate
Owner: Harold Martin
A Gradle plugin to keep your computer awake while running gradle tasks
https://github.com/hbmartin/gradle-plugin-caffeinate
Sources: https://github.com/hbmartin/gradle-plugin-caffeinate
Version 0.0.2 (latest)
Created 21 August 2023.
A Gradle plugin to keep your computer awake while running gradle tasks
Add this plugin to your build using the plugins DSL:
plugins {
id("me.haroldmartin.gradle.caffeinate") version "0.0.2"
}
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("me.haroldmartin.gradle.caffeinate:me.haroldmartin.gradle.caffeinate.gradle.plugin:0.0.2") }
It can then be applied in the precompiled script plugin:plugins { id("me.haroldmartin.gradle.caffeinate") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("me.haroldmartin.gradle.caffeinate:me.haroldmartin.gradle.caffeinate.gradle.plugin:0.0.2") } } apply(plugin = "me.haroldmartin.gradle.caffeinate")
- Applying plugins to all subprojects .