cl.franciscosolis.blossom-extended
Owner: Francisco Solis
Gradle plugin for performing source code token replacements in Java, Kotlin, Scala, and Groovy based projects
https://github.com/Im-Fran/blossom
Sources: https://github.com/Im-Fran/blossom
Version 1.3.1 (latest)
Created 12 July 2022.
Gradle plugin for performing source code token replacements in Java, Kotlin, Scala, and Groovy based projects
Add this plugin to your build using the plugins DSL:
plugins {
id("cl.franciscosolis.blossom-extended") version "1.3.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("cl.franciscosolis.blossom-extended:cl.franciscosolis.blossom-extended.gradle.plugin:1.3.1") }
It can then be applied in the precompiled script plugin:plugins { id("cl.franciscosolis.blossom-extended") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("cl.franciscosolis.blossom-extended:cl.franciscosolis.blossom-extended.gradle.plugin:1.3.1") } } apply(plugin = "cl.franciscosolis.blossom-extended")
- Applying plugins to all subprojects .