de.sayayi.plugin.gradle.message
Owner: Jeroen Gremmen
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.11.0 (latest)
0.11.0
Created 01 October 2024.
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.11.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("de.sayayi.lib:message-gradle-plugin:0.11.0")
}
}
apply(plugin = "de.sayayi.plugin.gradle.message")
Using the plugins DSL:
plugins {
id "de.sayayi.plugin.gradle.message" version "0.11.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "de.sayayi.lib:message-gradle-plugin:0.11.0"
}
}
apply plugin: "de.sayayi.plugin.gradle.message"