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?(@dot copies everything in source area to class area, can we customize this?)
How to prevent copying temp files with product build? [message #525607] 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.
Previous Topic:Export Product cannot find plugin
Next Topic:How to prevent copying temp files with product build?
Goto Forum:
  


Current Time: Tue Mar 19 02:31:50 GMT 2024

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

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

Back to the top