Description
Current code is :
builder.addPropertyValue("create-home", Boolean
.parseBoolean(element.getAttribute("create-home")));
but it should be:
builder.addPropertyValue("createHome", Boolean
.parseBoolean(element.getAttribute("create-home")));
Besides, the xml file used in the tests has no create-home property so the bug remained unnoticed in the tests.