com.github.hexomod.macro.preprocessor
所有者: Hexosse de HexoCube
一个简单的 Java 宏预处理器插件
https://github.com/HexoMod-tools/gradle-macro-preprocessor-plugin
来源: https://github.com/HexoMod-tools/gradle-macro-preprocessor-plugin.git
使用 plugins DSL
plugins {
id("com.github.hexomod.macro.preprocessor") version "0.9"
}
使用 遗留插件应用
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("com.github.hexomod:MacroPreprocessor:0.9")
}
}
apply(plugin = "com.github.hexomod.macro.preprocessor")
使用 plugins DSL
plugins {
id "com.github.hexomod.macro.preprocessor" version "0.9"
}
使用 遗留插件应用
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "com.github.hexomod:MacroPreprocessor:0.9"
}
}
apply plugin: "com.github.hexomod.macro.preprocessor"