Search Gradle plugins

net.kyori.blossom

Owner: kashike

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

https://blossom.kyori.net/

Sources: https://github.com/KyoriPowered/blossom/

Version 2.1.0 (latest)

Created 16 September 2023.

Gradle plugin for performing resource and source code template expansion

Using the plugins DSL:

plugins {
  id("net.kyori.blossom") version "2.1.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("net.kyori:blossom:2.1.0")
  }
}

apply(plugin = "net.kyori.blossom")

Using the plugins DSL:

plugins {
  id "net.kyori.blossom" version "2.1.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "net.kyori:blossom:2.1.0"
  }
}

apply plugin: "net.kyori.blossom"

Learn how to apply plugins to subprojects