Search Gradle plugins

Version 1.0.1 (latest)

1.0.1

Created 05 September 2018.

A plugin to dynamic replace jar and java file by placeholder string

Add this plugin to your build using the plugins DSL:

plugins {
  id("me.xp.gradle.placeholder.PlaceholderPlugin") version "1.0.1"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("gradle.plugin.me.xp.gradle:placeholder:1.0.1")
      }
    }
    
    apply(plugin = "me.xp.gradle.placeholder.PlaceholderPlugin")
  • Applying plugins to all subprojects .