ant script updates
diff --git a/org.eclipse.jdt.debug/exportplugin.xml b/org.eclipse.jdt.debug/scripts/exportplugin.xml
similarity index 67%
rename from org.eclipse.jdt.debug/exportplugin.xml
rename to org.eclipse.jdt.debug/scripts/exportplugin.xml
index 0d99554..aeac061 100644
--- a/org.eclipse.jdt.debug/exportplugin.xml
+++ b/org.eclipse.jdt.debug/scripts/exportplugin.xml
@@ -6,7 +6,7 @@
 	<!-- Set the timestamp and important properties -->

 	<target name="init">

 		<tstamp/>

-		<property name="destdir" value="../../plugin-export" />

+		<property name="destdir" value="../../../plugin-export" />

 		<property name="dest"  value="${destdir}/org.eclipse.jdt.debug" />

 	</target>

 

@@ -17,18 +17,18 @@
 		<mkdir dir="${dest}" />

 		<jar 

 			jarfile="${dest}/jdimodel.jar"

-			basedir="bin"

+			basedir="../bin"

 		/>

 		<!-- Create the source zip -->

 		<zip zipfile="${dest}/jdimodelsrc.zip">

-			<fileset dir="Eclipse Java Core Debug"/>

-			<fileset dir="Eclipse JDI"/>

+			<fileset dir="../Eclipse Java Core Debug"/>

+			<fileset dir="../Eclipse JDI"/>

 		</zip>

-		<copy file="plugin.xml" todir="${dest}"/>

-		<copy file="plugin.jars" todir="${dest}"/>

-		<copy file="jdi.jar" todir="${dest}"/>

-		<copy file=".classpath" todir="${dest}"/>

-		<copy file=".options" todir="${dest}"/>

+		<copy file="../plugin.xml" todir="${dest}"/>

+		<copy file="../plugin.jars" todir="${dest}"/>

+		<copy file="../jdi.jar" todir="${dest}"/>

+		<copy file="../.classpath" todir="${dest}"/>

+		<copy file="../.options" todir="${dest}"/>

 	</target>

 	

 </project>