This message was deleted.
# performance
s
This message was deleted.
a
System properties don't work? If not that, you can probably pass them as
gradle-args
I think we just pass them to Gradle invocation and don't do any filtering, e.g.:
Copy code
gradle-args = ["-DmySystemProp=value", "-PmyGradleProperty=value"]
Oh, now I see you want project properties. So
system-properties
probably won't work for project properties, but
gradle-args
should
Added working example to the issue
s
Thanks , I got it working soon after replying on that issue too. But I did come across an edge case I'm unable to reproduce on the sample project. project properties for me work when I invoke a task without specifying the target project. But fails when I specify the same . I could reproduce this on the sample project though. Will dig more on it. Thanks again for the quick reply!