io.github.dryrum.replace-in-file
Owner: Carmelo Iriti
This plugin replace fragment of content in a file
https://github.com/dryrum/CDelivery
Sources: https://github.com/dryrum/CDelivery
Version 0.7.0 (latest)
0.7.0
Created 16 March 2024.
This plugin replace fragment of content in a file
Using the plugins DSL:
plugins {
id("io.github.dryrum.replace-in-file") version "0.7.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.github.dryrum:replace-in-file:0.7.0")
}
}
apply(plugin = "io.github.dryrum.replace-in-file")
Using the plugins DSL:
plugins {
id "io.github.dryrum.replace-in-file" version "0.7.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.github.dryrum:replace-in-file:0.7.0"
}
}
apply plugin: "io.github.dryrum.replace-in-file"