Search Gradle plugins

com.glureau.grip

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.

Using the plugins DSL:

plugins {
  id("com.glureau.grip") version "0.4.5"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.glureau.grip:plugin:0.4.5")
  }
}

apply(plugin = "com.glureau.grip")

Using the plugins DSL:

plugins {
  id "com.glureau.grip" version "0.4.5"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.glureau.grip:plugin:0.4.5"
  }
}

apply plugin: "com.glureau.grip"

Learn how to apply plugins to subprojects