Index: applications/editors/josm/plugins/build.xml
===================================================================
--- applications/editors/josm/plugins/build.xml	(revision 10409)
+++ applications/editors/josm/plugins/build.xml	(revision 10410)
@@ -17,7 +17,9 @@
     <ant	dir="colorscheme"	antfile="build.xml"	target="dist"/>
     <ant	dir="duplicateway"	antfile="build.xml"	target="dist"/>
+    <ant	dir="globalsat"		antfile="build.xml"	target="dist"/>
     <ant	dir="lakewalker"	antfile="build.xml"	target="dist"/>
     <ant	dir="lang"		antfile="build.xml"	target="dist"/>
     <ant	dir="livegps"		antfile="build.xml"	target="dist"/>
+    <ant	dir="measurement"	antfile="build.xml"	target="dist"/>
     <ant	dir="namefinder"	antfile="build.xml"	target="dist"/>
     <ant	dir="nearclick"		antfile="build.xml"	target="dist"/>
@@ -46,8 +48,10 @@
     <ant	dir="colorscheme"	antfile="build.xml"	target="clean"/>
     <ant	dir="duplicateway"	antfile="build.xml"	target="clean"/>
+    <ant	dir="globalsat"		antfile="build.xml"	target="clean"/>
     <ant	dir="grid"		antfile="build.xml"	target="clean"/>
     <ant	dir="lakewalker"	antfile="build.xml"	target="clean"/>
     <ant	dir="lang"		antfile="build.xml"	target="clean"/>
     <ant	dir="livegps"		antfile="build.xml"	target="clean"/>
+    <ant	dir="measurement"	antfile="build.xml"	target="clean"/>
     <ant	dir="namefinder"	antfile="build.xml"	target="clean"/>
     <ant	dir="navigator"		antfile="build.xml"	target="clean"/>
Index: applications/editors/josm/plugins/globalsat/build.xml
===================================================================
--- applications/editors/josm/plugins/globalsat/build.xml	(revision 10409)
+++ applications/editors/josm/plugins/globalsat/build.xml	(revision 10410)
@@ -1,3 +1,3 @@
-<project name="globalsat" default="build" basedir=".">
+<project name="globalsat" default="dist" basedir=".">
 
 	<!-- point to your JOSM directory -->
@@ -24,5 +24,5 @@
 	</target>
 
-	<target name="build" depends="compile">
+	<target name="dist" depends="compile">
 		<unjar dest="build">
 			<fileset refid="RXTX" />
@@ -47,5 +47,5 @@
 	</target>
 
-	<target name="install" depends="build">
+	<target name="install" depends="dist">
 		<copy file="dist/globalsat.jar" todir="${user.home}/.josm/plugins"/>
 	</target>
Index: applications/editors/josm/plugins/measurement/build.xml
===================================================================
--- applications/editors/josm/plugins/measurement/build.xml	(revision 10409)
+++ applications/editors/josm/plugins/measurement/build.xml	(revision 10410)
@@ -1,6 +1,6 @@
-<project name="measurement" default="build" basedir=".">
+<project name="measurement" default="dist" basedir=".">
 
 	<!-- point to your JOSM directory -->
-	<property name="josm" location="../../../core/dist/josm-custom.jar" />
+	<property name="josm" location="../../core/dist/josm-custom.jar" />
 
 
@@ -16,5 +16,5 @@
 	</target>
 
-	<target name="build" depends="compile">
+	<target name="dist" depends="compile">
 		<copy todir="build/images" >
 			<fileset dir="images" />
@@ -36,5 +36,5 @@
 	</target>
 
-	<target name="install" depends="build">
+	<target name="install" depends="dist">
 		<copy file="dist/measurement.jar" todir="${user.home}/.josm/plugins"/>
 	</target>
