Search Gradle plugins

Version 0.1

Created 17 November 2019.

A simple java replace token preprocessor plugin

Using the plugins DSL:

plugins {
  id("com.github.hexomod.replace.token.preprocessor") version "0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.github.hexomod:gradle.replace.token.preprocessor.plugin:0.1")
  }
}

apply(plugin = "com.github.hexomod.replace.token.preprocessor")

Using the plugins DSL:

plugins {
  id "com.github.hexomod.replace.token.preprocessor" version "0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.github.hexomod:gradle.replace.token.preprocessor.plugin:0.1"
  }
}

apply plugin: "com.github.hexomod.replace.token.preprocessor"

Learn how to apply plugins to subprojects