We are using maven and I just added MyEclipse. I been trying to have both of this tools to work together. One problem that I am having is when I deploy an ear file. Each of my project in addition to the eclipse and myeclipse metadata files in the project have also Maven files. Those files are maven.xml project.xml and project.properties. Also when I run Maven it creates an output file named target.
Now when i run maven to build the ear and later I use my eclipse to deploy to JBoss I end up with a bunch of files deployed that I do not want. I end up with target wich contains the ear generated by maven and the maven files maven.xm, project.properties, project.xml.
Since I use maven for deployment to production and is used by the deployer (using myeclipse for production is not an option) I would like to request the following:
The deployer should allow to add a list of excludes like maven has i.e.
<build>
<resources>
<resource>
<directory>/</directory>
<excludes>
<exclude>project.properties</include>
</excludes>
<filtering>false</filtering>
</resource>
</resources>
</build>
Thanks