Como mapear coleções no Dozer

Eu gostaria de fazer algo como:

ArrayList<CustomObject> objects = new ArrayList<CustomObject>();
...
DozerBeanMapper MAPPER = new DozerBeanMapper();
...
ArrayList<NewObject> newObjects = MAPPER.map(objects, ...); 

Assumindo:

<mapping>
  <class-a>com.me.CustomObject</class-a>
  <class-b>com.me.NewObject</class-b>   
    <field>  
      <a>id</a>  
      <b>id2</b>  
    </field>  
</mapping>

Eu tentei :

ArrayList<NewObject> holder = new ArrayList<NewObject>();
MAPPER.map(objects, holder);

mas o objeto titular está vazio. Eu também joguei com mudar o segundo argumento sem sorte ...

questionAnswers(8)

yourAnswerToTheQuestion