@Test
public void testFieldFormattingParts() throws Exception{
TransformationByProperties trafo= ConfigurationPropertiesReader.createPropertiesTransformation();
//This transformation is needed when this test is invoked from outside maven (for example eclipse)
TransformationByStringReplace trafo2 = new TransformationByStringReplace();
trafo2.setKey("${project.groupId}");
trafo2.setValue("gluebooster/demos/finance");
trafo.setPropertiesValueTransformation(trafo2);
ObjectFormatterByXSD formatter = new ObjectFormatterByXSD();
formatter.setResourcePathTransformation(trafo);
ArrayList<String> list = new ArrayList<String>();
list.add(ResourceUtils.CLASSPATH_URL_PREFIX+ "/${maven.project.group.id}/appConfiguration/definitions/fieldDefinitions.xsd");