Index: applications/editors/josm/plugins/duplicateway/README
===================================================================
--- applications/editors/josm/plugins/duplicateway/README	(revision 4245)
+++ applications/editors/josm/plugins/duplicateway/README	(revision 4245)
@@ -0,0 +1,1 @@
+A JOSM plugin create duplicate ways
Index: applications/editors/josm/plugins/duplicateway/build.xml
===================================================================
--- applications/editors/josm/plugins/duplicateway/build.xml	(revision 4245)
+++ applications/editors/josm/plugins/duplicateway/build.xml	(revision 4245)
@@ -0,0 +1,40 @@
+<project name="Duplicate-Way" default="jar" basedir=".">
+
+  <property name="josm" location="../../core/dist/josm-custom.jar" />
+
+  <target name="compile" depends="clean">
+    <mkdir dir="build"></mkdir>
+  	<mkdir dir="build/images"></mkdir>
+    <copy todir="build">
+    	<fileset dir="bin" casesensitive="yes">
+    	  <filename name="**/*.class"/>
+    	</fileset>
+    </copy>
+  	<copy todir="build/images">
+    	<fileset dir="images" casesensitive="yes">
+    	  <filename name="**/*.png"/>
+    	</fileset>
+  	</copy>
+  </target>
+
+  <target name="jar" depends="compile">
+    <jar destfile="Duplicate-Way.jar" basedir="build">
+      <manifest>
+        <attribute name="Plugin-Class" value="org.openstreetmap.josm.plugins.duplicateway.DuplicateWayPlugin" />
+        <attribute name="Plugin-Description" value="Duplicate Ways with an offset" />
+        <attribute name="Plugin-Version" value="0.1"/>
+        <attribute name="Author" value="Brent Easton &lt;b.easton@uws.edu.au>"/>
+      </manifest>
+    </jar>
+  </target>
+
+  <target name="clean">
+    <delete dir="build" />
+    <delete file="Duplicate-Way.jar" />
+  </target>
+
+  <target name="install" depends="jar">
+    <copy file="Duplicate-Way.jar" todir="${user.home}/.josm/plugins"/>
+  </target>
+
+</project>
