de.andycandy.gradle.user_input
Owner: Andreas Hoffmann
A simple plugin which adds user input dialogs to a grade build.
https://github.com/andycandy-de/UserInputGradle
Sources: https://github.com/andycandy-de/UserInputGradle
Version 1.0.5 (latest)
Created 08 September 2020.
A simple plugin which adds user input dialogs to a grade build.
Add this plugin to your build using the plugins DSL:
plugins {
id("de.andycandy.gradle.user_input") version "1.0.5"
}
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("de.andycandy.gradle.user_input:de.andycandy.gradle.user_input.gradle.plugin:1.0.5") }
It can then be applied in the precompiled script plugin:plugins { id("de.andycandy.gradle.user_input") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("de.andycandy.gradle.user_input:de.andycandy.gradle.user_input.gradle.plugin:1.0.5") } } apply(plugin = "de.andycandy.gradle.user_input")
- Applying plugins to all subprojects .