Right now, it seems like the way to pass in properties to a build is by either using the -P command line option, or by using the @Option as part of a task input.
I’m interested in knowing how command line inputs will be used and reflected in the software model? Will they be considered another input to the build with some sort of binding to a rule?
Another part that comes to mind is the gradle.properties file. How are these represented in the model space?
get anywhere with this? i am dealing with the same issue. It seems that the model is loaded before the command line parameters. But thats just wild speculation right now.
I haven’t done a huge amount with this, but we have done a few things around this which seem to work.
User specifying in the build.gradle
If a user needs to inject parameters at build time, it seems like they can inject them at configuration time:
model {
myObject(ManagedObjectType) {
managedPropertyValue = project.findProperty('project.property')
}
}
Usage in rules
The way we were able to expose properties during the model was introducing a sort of Proxy extension that we register in . Here is a quick example written inside a build.gradle:
Nice work @mkobit. I did encounter such limitation with the software model in the past.
I worked around the limitation using the JVM system properties (flag -D). You can pass in properties accessible through System.getProperties. This is accessible within the software model as well as from the init script. You can even define them in gradle.properties files by prepending each property with systemProp.. This is documented here in the user guide.
Keep in mind that @Option is an internal API which should be avoided if possible. However, feel free to raise an issue on Github for any feature request you feel can improve your work as Gradle user and plugin author.