Excluding the .copyarea.bat & .copyarea.db files from the Build

The .copyarea.db & .copyarea.bat files should be exclude in order to avoid the deployment issues
http://ant.apache.org/manual/CoreTasks/defaultexcludes.htm.

Just as a gotcha if you are using Ant. Ant has a default exclusion list for the most popular version control systems: CVS, Subversion and Visual SourceSafe. ClearCase is not part of this list. So to fix this, add the following lines to your Ant script usually just after your tag. This only for Ant v1.6 and above. (replace [] with <>)

[defaultexcludes add="**/.copyarea.dat" /]
[defaultexcludes add="**/.copyarea.db" /]

No comments:

Post a Comment