If your trying to create a ServiceMix CXF Service Unit using the Fuse 1.4.2 Tooling and you hit the following error trying to generate sources:
11/19/08 5:22:23 PM EST: resources:resources
11/19/08 5:22:23 PM EST: ERROR reactor-execute : /home/davestanley/Work/eclipse/cxf-se/TestTwo : org/codehaus/plexus/util/FileUtils$FilterWrapper
The workaround is to add the maven-resources-plugin to your projects pom.xml.
1 2 3 4 |
<plugin> <artifactId>maven-resources-plugin</artifactId> <version>2.2</version> </plugin> |