Search Gradle plugins

ninja.miserable.blossom

Owner: kashike

Gradle plugin to perform source code token replacements in Java-based projects

https://github.com/MiserableNinja/Blossom/

Sources: https://github.com/MiserableNinja/Blossom/

Version 1.0.1 (latest)

Created 25 April 2016.

Gradle plugin to perform source code token replacements in Java-based projects

Add this plugin to your build using the plugins DSL:

plugins {
  id("ninja.miserable.blossom") version "1.0.1"
}

See also:

  • Adding the plugin to build logic for usage in precompiled script plugins.

    See the relevant documentation for more information.

    Add this plugin as a dependency to <convention-plugins-build>/build.gradle(.kts):

    dependencies {
      implementation("ninja.miserable.blossom:ninja.miserable.blossom.gradle.plugin:1.0.1")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("ninja.miserable.blossom")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("ninja.miserable.blossom:ninja.miserable.blossom.gradle.plugin:1.0.1")
      }
    }
    
    apply(plugin = "ninja.miserable.blossom")
  • Applying plugins to all subprojects .