I have a project, built using Flash Builder 4.0 on Mac OS X 10.6.
One of my source directories is src/main/webapp which contains a WEB-INF directory with this structure:
webapp
- WEB-INF (applicationContext.xml etc)
- - classes
- - flex (services-config.xml, remoting-config.xml, proxy-config.xml, messaging-config.xml)
- - lib
In properties, under Flex Build Path I have set src/main/webapp as an additional source folder.
When the project compiles, all the artifacts are created, and all of the above, including *.xml files under
WEB-INF are copied to the output folder, except for the WEB-INF flex directory which has the four xml
configuration files.
The same happens when I create a bin-release folder using the Project/Export Release Build menu.
Any ideas why just the WEB-INF/flex directory is not being copied to bin-debug or bin-release?
Thanks.