Index: applications/editors/josm/plugins/namefinder/build.xml
===================================================================
--- applications/editors/josm/plugins/namefinder/build.xml	(revision 3782)
+++ applications/editors/josm/plugins/namefinder/build.xml	(revision 3783)
@@ -7,4 +7,5 @@
      <target name="init">
         <mkdir dir="build" />
+        <mkdir dir="dist" />
       </target>
 
@@ -12,4 +13,5 @@
       <target name="clean">
         <delete dir="build" />
+        <delete dir="dist" />
       </target>
     
@@ -26,7 +28,7 @@
     </target>
 
-    <!-- dist target - crate jar file -->
+    <!-- dist target - create jar file -->
   <target name="dist" depends="compile">
-    <jar destfile="${ant.project.name}.jar" basedir="${plugin.build.dir}">
+    <jar destfile="dist/${ant.project.name}.jar" basedir="${plugin.build.dir}">
       <manifest>
         <attribute name="Plugin-Class" value="namefinder.NameFinderPlugin" />
@@ -38,5 +40,5 @@
     <!-- dist target - copy jar file to plugin destination -->
      <target name="install" depends="dist">
-        <copy file="${ant.project.name}.jar" todir="${josm.home.dir}/plugins" />
+        <copy file="dist/${ant.project.name}.jar" todir="${josm.home.dir}/plugins" />
       </target>
     
