com.glureau.grip
Owner:
Grégory Lureau
Update dynamically your files! Add a directive in your documentation and automatically include your library version, or another gradle variable, or a system environment variable, or even a file.
https://github.com/glureau/grip
Sources: https://github.com/glureau/grip
Version 0.4.5 (latest)
Created 25 April 2023.
Update dynamically your files! Add a directive in your documentation and automatically include your library version, or another gradle variable, or a system environment variable, or even a file.
Add this plugin to your build using the plugins DSL:
plugins {
id("com.glureau.grip") version "0.4.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("com.glureau.grip:com.glureau.grip.gradle.plugin:0.4.5") }
It can then be applied in the precompiled script plugin:plugins { id("com.glureau.grip") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.glureau.grip:com.glureau.grip.gradle.plugin:0.4.5") } } apply(plugin = "com.glureau.grip")
- Applying plugins to all subprojects .