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 1.1.0

Created 09 September 2018.

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

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

apply plugin: "net.kyori.blossom"

Learn how to apply plugins to subprojects