Search Gradle plugins

Version 1.1.2 (latest)

1.1.2

Created 12 May 2024.

A gradle to replace token in class file.

Add this plugin to your build using the plugins DSL:

plugins {
  id("top.hendrixshen.replace-token") version "1.1.2"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("top.hendrixshen.replacetoken:replace-token:1.1.2")
      }
    }
    
    apply(plugin = "top.hendrixshen.replace-token")
  • Applying plugins to all subprojects .