Hi guys, I have solved these issue changing the section of pom.xml from:
<testResource> <directory>src/main/webapp</directory> <filtering>true</filtering> <includes> <include>**/*.xml</include> </includes> </testResource> to: <testResource> <directory>src/main/webapp/WEB-INF</directory> <filtering>true</filtering> <includes> <include>*.xml</include> </includes> </testResource> Seems the wildchars ** does not work, as ant users expect in spring classloader...it does not descend the tree.. only use ** as a file/dir name. Hope this help you. Bye Campa -- View this message in context: http://www.nabble.com/UnsatisfiedDependencyException-tp15793588s2369p16201178.html Sent from the AppFuse - User mailing list archive at Nabble.com. --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]