com.github.hexomod.macro.preprocessor
Owner: Hexosse de HexoCube
A simple java macro preprocessor plugin
https://github.com/HexoMod-tools/gradle-macro-preprocessor-plugin
Sources: https://github.com/HexoMod-tools/gradle-macro-preprocessor-plugin.git
Version 0.9 (latest)
0.9
Created 18 March 2022.
A simple java macro preprocessor plugin
Using the plugins DSL:
plugins {
id("com.github.hexomod.macro.preprocessor") version "0.9"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.github.hexomod:MacroPreprocessor:0.9")
}
}
apply(plugin = "com.github.hexomod.macro.preprocessor")
Using the plugins DSL:
plugins {
id "com.github.hexomod.macro.preprocessor" version "0.9"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.github.hexomod:MacroPreprocessor:0.9"
}
}
apply plugin: "com.github.hexomod.macro.preprocessor"