Skip to content

Instantly share code, notes, and snippets.

@vmj
vmj / build.gradle
Last active October 15, 2018 05:43
Gradle property in a GString
class PingServer extends DefaultTask {
@Input
final Property<CharSequence> fqdm = project.objects.property(CharSequence)
@TaskAction
void ping() {
println "Pinging ${fqdm.get()}"
}
}