Search Gradle plugins

Version 1.3

1.3

Created 31 October 2024.

Comment PreProcessor for Java, Kotlin & Text Resources!

Using the plugins DSL:

plugins {
  id("dev.tocraft.preprocessor") version "1.3"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("dev.tocraft:preprocessor:1.3")
  }
}

apply(plugin = "dev.tocraft.preprocessor")

Using the plugins DSL:

plugins {
  id "dev.tocraft.preprocessor" version "1.3"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "dev.tocraft:preprocessor:1.3"
  }
}

apply plugin: "dev.tocraft.preprocessor"

Learn how to apply plugins to subprojects