Skip to content

Instantly share code, notes, and snippets.

View calclavia's full-sized avatar

Henry Mao calclavia

View GitHub Profile
@calclavia
calclavia / gist:60b30c497adce5587f70
Last active March 16, 2022 18:35 — forked from RX14/gist:6e04cd9fc71c52191def
Create property file with Gradle
def propertyFile = file "src/main/resources/META-INF/some.properties"
def props = new Properties()
propertyFile.withReader { props.load(it) }
props.setProperty("version", project.version)
propertyFile.withWriter { props.store(it) }