Search Gradle plugins

Version 0.4

Created 19 March 2020.

A simple java macro preprocessor plugin

Using the plugins DSL:

plugins {
  id("com.github.hexomod.macro.preprocessor") version "0.4"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.github.hexomod:MacroPreprocessor:0.4")
  }
}

apply(plugin = "com.github.hexomod.macro.preprocessor")

Using the plugins DSL:

plugins {
  id "com.github.hexomod.macro.preprocessor" version "0.4"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.github.hexomod:MacroPreprocessor:0.4"
  }
}

apply plugin: "com.github.hexomod.macro.preprocessor"

Learn how to apply plugins to subprojects