Search Gradle plugins

de.sayayi.plugin.gradle.message

Gradle Plugin to scan the class path, pre-compile and pack message and template formats into a single file.

https://github.com/jgremmen/message-format

Sources: https://github.com/jgremmen/message-format

Version 0.9.1 (latest)

Created 31 October 2023.

Gradle Plugin to scan the class path, pre-compile and pack message and template formats into a single file.

Using the plugins DSL:

plugins {
  id("de.sayayi.plugin.gradle.message") version "0.9.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("de.sayayi.lib:message-gradle-plugin:0.9.1")
  }
}

apply(plugin = "de.sayayi.plugin.gradle.message")

Using the plugins DSL:

plugins {
  id "de.sayayi.plugin.gradle.message" version "0.9.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "de.sayayi.lib:message-gradle-plugin:0.9.1"
  }
}

apply plugin: "de.sayayi.plugin.gradle.message"

Learn how to apply plugins to subprojects