com.github.hexomod.replace.token.preprocessor
所有者: Hexosse de HexoCube
一个简单的Java替换令牌预处理器插件
https://github.com/HexoMod-tools/gradle-replace-token-preprocessor-plugin
来源:https://github.com/HexoMod-tools/gradle-replace-token-preprocessor-plugin.git
使用插件DSL
plugins {
id("com.github.hexomod.replace.token.preprocessor") version "0.4"
}
使用旧式插件应用
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("com.github.hexomod:ReplaceTokenPreprocessor:0.4")
}
}
apply(plugin = "com.github.hexomod.replace.token.preprocessor")
使用插件DSL
plugins {
id "com.github.hexomod.replace.token.preprocessor" version "0.4"
}
使用旧式插件应用
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "com.github.hexomod:ReplaceTokenPreprocessor:0.4"
}
}
apply plugin: "com.github.hexomod.replace.token.preprocessor"