me.elgregos.reakteves.cli
Owner:
Grégory Bévan
Cli to enhance user experience with ReaKt.EveS library
https://github.com/GregoryBevan/reakt-eves/blob/main/cli/README.md
Sources: https://github.com/GregoryBevan/reakt-eves.git
Version 1.4.6 (latest)
Created 20 January 2025.
Cli to enhance user experience with ReaKt.EveS library
Add this plugin to your build using the plugins DSL:
plugins {
id("me.elgregos.reakteves.cli") version "1.4.6"
}
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.elgregos.reakteves.cli:me.elgregos.reakteves.cli.gradle.plugin:1.4.6") }
It can then be applied in the precompiled script plugin:plugins { id("me.elgregos.reakteves.cli") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("me.elgregos.reakteves.cli:me.elgregos.reakteves.cli.gradle.plugin:1.4.6") } } apply(plugin = "me.elgregos.reakteves.cli")
- Applying plugins to all subprojects .