Skip to main content


Eclipse Community Forums
Forum Search:

Search      Help    Register    Login    Home
Home » Eclipse Projects » Plugin Development Environment (PDE) » How to prevent copying temp files with product build?
How to prevent copying temp files with product build? [message #605489] Wed, 07 April 2010 07:43
Mohamed Hussein is currently offline Mohamed HusseinFriend
Messages: 76
Registered: July 2009
Member
When using PDE rcp product build a build.xml file is auto generated for each plugin, this build file contains the following code after compiling the java classes to copy any needed resource to the generated class directory structure.

<!-- Copy necessary resources -->
<copy todir="${build.result.folder}/@dot" failonerror="true" overwrite="false">
<fileset dir="src/">
<exclude name="**/*.java"/>
<exclude name="**/package.htm*"/>
</fileset>
</copy>


The problem with this is that it copies lots of temp files (like the ones generated by the version control tool).

Is there a way to add an exclude statement to that build file, or to stop copying the temp files?

Thanks in advance.
--
Best Regards,
Mohamed.


Best Regards,
Mohamed.
Previous Topic:How to prevent copying temp files with product build?
Next Topic:Plugin.xml and Java code
Goto Forum:
  


Current Time: Thu Apr 25 11:04:08 GMT 2024

Powered by FUDForum. Page generated in 0.67621 seconds
.:: Contact :: Home ::.

Powered by: FUDforum 3.0.2.
Copyright ©2001-2010 FUDforum Bulletin Board Software

Back to the top