@Test
public void processInstanceIdFieldInCommands() throws Exception {
Reflections cmdReflections = new Reflections(
ClasspathHelper.forPackage("org.drools.command.*"),
new TypeAnnotationsScanner(), new FieldAnnotationsScanner(), new MethodAnnotationsScanner(), new SubTypesScanner());
Set<Class<?>> classes = cmdReflections.getTypesAnnotatedWith(XmlRootElement.class);
Set<Class> cmdClasses = new HashSet<Class>();
for (Class<?> jaxbClass : classes ) {
if( jaxbClass.getSimpleName().endsWith("Command") ) {