I want to use Arquillian + Selenium for testing my JSF Pages. My Project structure is as follows:
/src/main/java - my java classes
/src/main/resources
/src/main/resources/META-INF - all imgs, css, js and custom composite JSF components
/src/main/webapp/pages - my xhtml pages
/src/main/webapp/WEB-INF - descriptors, JSF template
I want to build a test deployment archive with all my needed stuff, i.e. all resources, the particular xhtml page I want to test, WEB-INF directory. I've managed to copy all of them except of the META-INF resources. Is there any method how to tell shrinkwrap to take the whole META-INF directory into the deployment? Thank you.