org.manathome.props2consts
Owner: man
generate java constants from properties file keys
https://gitlab.com/spare-time-demos/props2consts
Sources: https://gitlab.com/spare-time-demos/props2consts.git
Version 0.1.1-SNAPSHOT (latest)
0.1.1-SNAPSHOT
Created 19 March 2020.
generate java constants from properties file keys
Using the plugins DSL:
plugins {
id("org.manathome.props2consts") version "0.1.1-SNAPSHOT"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("org.manathome.props2consts:plugin:0.1.1-SNAPSHOT")
}
}
apply(plugin = "org.manathome.props2consts")
Using the plugins DSL:
plugins {
id "org.manathome.props2consts" version "0.1.1-SNAPSHOT"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "org.manathome.props2consts:plugin:0.1.1-SNAPSHOT"
}
}
apply plugin: "org.manathome.props2consts"