Dariusz Kuc
02/26/2020, 3:46 AM// set from command line
@Input
@Optional
@Option(option = "targetFileName", description = "target file")
val targetFileName: Property<String> = project.objects.property(String::class.java)
// set from DSL
@Input
@Optional
val targetFile: RegularFileProperty = project.objects.fileProperty()
Is there a better way? If not, is there a way to hide targetFileName
from the DSL?octylFractal
02/26/2020, 3:47 AMinternal
will be sufficient? that makes it public in the JVM, but KDSL won't see it. I don't know about groovy dslDariusz Kuc
02/26/2020, 3:49 AMinternal
I got an exception about missing getterDariusz Kuc
02/26/2020, 3:50 AMbuild.gradle