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
Version 0.4.4
Created 15 November 2022.
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.
Using the plugins DSL:
plugins {
id("com.glureau.grip") version "0.4.4"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.glureau.grip:plugin:0.4.4")
}
}
apply(plugin = "com.glureau.grip")
Using the plugins DSL:
plugins {
id "com.glureau.grip" version "0.4.4"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.glureau.grip:plugin:0.4.4"
}
}
apply plugin: "com.glureau.grip"