org.cthing.property-key-constants
Owner: Baron Roberts
A Gradle plugin that generates a Java source file with constants for keys in properties files.
https://github.com/cthing/gradle-property-key-constants
Sources: https://github.com/cthing/gradle-property-key-constants
Version 2.0.0 (latest)
2.0.0
Created 26 October 2024.
A Gradle plugin that generates a Java source file with constants for keys in properties files.
Using the plugins DSL:
plugins {
id("org.cthing.property-key-constants") version "2.0.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("org.cthing:gradle-property-key-constants:2.0.0")
}
}
apply(plugin = "org.cthing.property-key-constants")
Using the plugins DSL:
plugins {
id "org.cthing.property-key-constants" version "2.0.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "org.cthing:gradle-property-key-constants:2.0.0"
}
}
apply plugin: "org.cthing.property-key-constants"