me.xp.gradle.placeholder.PlaceholderPlugin
Owner: fansion
A plugin to dynamic replace jar and java file by placeholder string
https://github.com/xinshengfan/ClassPlaceholder
Sources: https://github.com/xinshengfan/ClassPlaceholder.git
Version 1.0.1 (latest)
1.0.1
Created 05 September 2018.
A plugin to dynamic replace jar and java file by placeholder string
Using the plugins DSL:
plugins {
id("me.xp.gradle.placeholder.PlaceholderPlugin") version "1.0.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.me.xp.gradle:placeholder:1.0.1")
}
}
apply(plugin = "me.xp.gradle.placeholder.PlaceholderPlugin")
Using the plugins DSL:
plugins {
id "me.xp.gradle.placeholder.PlaceholderPlugin" version "1.0.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.me.xp.gradle:placeholder:1.0.1"
}
}
apply plugin: "me.xp.gradle.placeholder.PlaceholderPlugin"