Index: /applications/editors/josm/plugins/build.xml
===================================================================
--- /applications/editors/josm/plugins/build.xml	(revision 3779)
+++ /applications/editors/josm/plugins/build.xml	(revision 3779)
@@ -0,0 +1,39 @@
+<project name="josm-plugins" default="build" basedir=".">
+
+	<!-- There's no josm.jar in the svn, so point "josm" to a local copy of your JOSM binary -->
+	<property name="josm" location="../../../../editors/josm/dist/josm-custom.jar" />
+	<!-- <property name="josm" location="../josm/josm-latest.jar" ></property> -->
+	
+	<!-- target directory to place the plugin in -->
+	<!-- Windows has a different home directory scheme then unix/linux -->
+	<!-- I don't know an automatic way to find it with ant :-(, if you know, please fix -->
+	<!--<property name="plugins" location="${user.home}/.josm/plugins" ></property>-->
+	<property name="plugins" location="${user.home}/Anwendungsdaten/JOSM/plugins" ></property>
+
+	<!-- you should not need to modify anything below this! -->
+
+
+	<target name="init">
+	</target>
+
+	<target name="compile" depends="init">
+	</target>
+
+	<target name="build" depends="compile">
+		<ant dir="../core" antfile="build.xml" target="dist"/>
+		<!--<ant dir="mappaint" antfile="build.xml" target="build"/>-->
+		<ant dir="navigator" antfile="build.xml" target="dist"/>
+	</target>
+
+	<target name="clean">
+		<!--<ant dir="mappaint" antfile="build.xml" target="clean"/>-->
+		<ant dir="navigator" antfile="build.xml" target="clean"/>
+	</target>
+
+	<target name="clean_install">
+	</target>
+
+	<target name="install" depends="build">
+	</target>
+
+</project>
