Search Gradle plugins

Version 0.0.1

Created 15 December 2015.

Adds the ReplaceTokens feature from Ant to the processResources Gradle task

Using the plugins DSL:

plugins {
  id("com.blogspot.nombre-temp.replace.properties.resources") version "0.0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.blogspot.nombre_temp.gradle:replace-properties-resources-plugin:0.0.1")
  }
}

apply(plugin = "com.blogspot.nombre-temp.replace.properties.resources")

Using the plugins DSL:

plugins {
  id "com.blogspot.nombre-temp.replace.properties.resources" version "0.0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.blogspot.nombre_temp.gradle:replace-properties-resources-plugin:0.0.1"
  }
}

apply plugin: "com.blogspot.nombre-temp.replace.properties.resources"

Learn how to apply plugins to subprojects