com.brambolt.wrench.runbooks
Owner:
Brambolt
Gradle-based runbook driver.
https://github.com/brambolt/wrench-runbooks
Sources: https://github.com/brambolt/gradle-wrenches
Version 2022.05.01-7057 (latest)
Created 20 April 2022.
Gradle-based runbook driver.
Add this plugin to your build using the plugins DSL:
plugins {
id("com.brambolt.wrench.runbooks") version "2022.05.01-7057"
}
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("com.brambolt.wrench.runbooks:com.brambolt.wrench.runbooks.gradle.plugin:2022.05.01-7057") }
It can then be applied in the precompiled script plugin:plugins { id("com.brambolt.wrench.runbooks") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.brambolt.wrench.runbooks:com.brambolt.wrench.runbooks.gradle.plugin:2022.05.01-7057") } } apply(plugin = "com.brambolt.wrench.runbooks")
- Applying plugins to all subprojects .