<?xml version="1.0" encoding="UTF-8"?>
<project name="mac-dock-gallery_wordpressorg" default="copy_all" basedir="trunk">
	<property name="src" value="." />
	<property name="ver" value="0.1.0" />
	<property name="dest_folder" value="../../CONTUSHDFLV1/wp-content/plugins/mac_dock_gallery" />
	<target name="copy_all" description="Copies files to My Project.">
		<echo message="Running build.xml. Copying files from trunk to testing picasa..." />
		<copy todir="${dest_folder}/">
			<fileset dir=".">
				<include name="**/*" />	
				<exclude name="**/.svn/**" />
				<exclude name="**/build.xml/**" />
			</fileset>
		</copy>
	</target>
</project>

