xyz.ronella.simple-git
Owner: Ronaldo Webb
The plugin that allows you access to git commands inside gradle as task
https://github.com/rcw3bb/simple-git
Sources: https://github.com/rcw3bb/simple-git
Version 2.2.1 (latest)
Created 09 December 2024.
The plugin that allows you access to git commands inside gradle as task
Add this plugin to your build using the plugins DSL:
plugins {
id("xyz.ronella.simple-git") version "2.2.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("xyz.ronella.simple-git:xyz.ronella.simple-git.gradle.plugin:2.2.1") }
It can then be applied in the precompiled script plugin:plugins { id("xyz.ronella.simple-git") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("xyz.ronella.simple-git:xyz.ronella.simple-git.gradle.plugin:2.2.1") } } apply(plugin = "xyz.ronella.simple-git")
- Applying plugins to all subprojects .