Hi,
In GradleLauncher , we can pass parameters to task using ProjectProperties. Eg: something like this
Map<String,String> projectProperties = new HashMap<String, String>();
projectProperties.put("Name", "xxxx");
startParameterArgs.setProjectProperties(projectProperties);
How to achieve the same using gradle-tooling-api ??