Search Gradle plugins

net.ellune.blossom

Owner: kashike

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

https://github.com/Ellune/Blossom/

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

Version 1.0.0

Created 03 October 2015.

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

Using the plugins DSL:

plugins {
  id("net.ellune.blossom") version "1.0.0"
}

Using legacy plugin application:

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

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

Using the plugins DSL:

plugins {
  id "net.ellune.blossom" version "1.0.0"
}

Using legacy plugin application:

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

apply plugin: "net.ellune.blossom"

Learn how to apply plugins to subprojects