Index: plications/editors/josm/plugins/mappaint/.classpath
===================================================================
--- /applications/editors/josm/plugins/mappaint/.classpath	(revision 6069)
+++ 	(revision )
@@ -1,7 +1,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<classpath>
-	<classpathentry kind="src" path="src"/>
-	<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
-	<classpathentry combineaccessrules="false" kind="src" path="/josm"/>
-	<classpathentry kind="output" path="bin"/>
-</classpath>
Index: plications/editors/josm/plugins/mappaint/.project
===================================================================
--- /applications/editors/josm/plugins/mappaint/.project	(revision 6069)
+++ 	(revision )
@@ -1,17 +1,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<projectDescription>
-	<name>mappaint</name>
-	<comment></comment>
-	<projects>
-	</projects>
-	<buildSpec>
-		<buildCommand>
-			<name>org.eclipse.jdt.core.javabuilder</name>
-			<arguments>
-			</arguments>
-		</buildCommand>
-	</buildSpec>
-	<natures>
-		<nature>org.eclipse.jdt.core.javanature</nature>
-	</natures>
-</projectDescription>
Index: plications/editors/josm/plugins/mappaint/README
===================================================================
--- /applications/editors/josm/plugins/mappaint/README	(revision 6069)
+++ 	(revision )
@@ -1,5 +1,0 @@
-This is the MapPaint Plugin for JOSM.
-
-An alternative render for the map with colouring, line thickness, icons after tags.
-
-Details can be found at: http://wiki.openstreetmap.org/index.php/JOSM/Plugins
Index: plications/editors/josm/plugins/mappaint/build.xml
===================================================================
--- /applications/editors/josm/plugins/mappaint/build.xml	(revision 6069)
+++ 	(revision )
@@ -1,71 +1,0 @@
-<project name="mappaint" default="dist" basedir=".">
-
-  <!-- josm "user home" directory depends on the platform used (windows has a different place than unix/linux) -->
-  <property environment="env"/>
-  <condition property="josm.home.dir" value="${env.APPDATA}/JOSM" else="${user.home}/.josm">
-    <and>
-      <os family="windows"/>
-    </and>
-  </condition>
-
-  <!-- compilation properties -->
-  <property name="josm.build.dir"   value="../../core"/>
-  <property name="josm.plugins.dir" value="${josm.home.dir}/plugins"/>
-  <property name="josm.jar"         location="../../core/dist/josm-custom.jar" />
-  <property name="plugin.build.dir" value="build"/>
-  <property name="plugin.dist.dir"  value="../dist"/>
-  <property name="plugin.name"      value="${ant.project.name}"/>
-  <property name="plugin.jar"       value="../dist/${plugin.name}.jar"/>
-
-
-  <!-- you should not need to modify anything below this! -->
-
-  <target name="compile">
-    <mkdir dir="${plugin.build.dir}"></mkdir>
-    <javac srcdir="src" classpath="${josm.jar}" destdir="${plugin.build.dir}" debug="true" source="1.5" target="1.5">
-      <include name="**/*.java" />
-	  <!--compilerarg value="-Xlint:deprecation"/-->
-    </javac>
-  </target>
-
-  <target name="dist" depends="compile">
-    <!-- copy the "standard" mappaint style -->
-    <copy todir="${plugin.build.dir}/standard">
-      <fileset dir="styles/standard"></fileset>
-    </copy>
-    <!-- define the version of the jar file -->
-    <exec append="false" output="REVISION" executable="svn" failifexecutionfails="false">
-      <env key="LANG" value="C"/>
-      <arg value="info"/>
-      <arg value="--xml"/>
-      <arg value="."/>
-    </exec>
-    <xmlproperty file="REVISION" prefix="version" keepRoot="false" collapseAttributes="true"/>
-	<!-- delete intermediate file -->
-    <delete file="REVISION"/>
-    <!-- create jar file with manifest -->
-    <jar destfile="${plugin.jar}" basedir="${plugin.build.dir}">
-      <manifest>
-        <attribute name="Plugin-Class" value="mappaint.MapPaintPlugin" />
-        <attribute name="Plugin-Description" value="An alternative render for the map with colouring, line thickness and icons.&lt;br&gt;" />
-        <attribute name="Plugin-Version" value="${version.entry.commit.revision}"/>
-        <attribute name="Plugin-Date" value="${version.entry.commit.date}"/>
-        <attribute name="Author" value="Nick Whitelegg / Ulf Lamping"/>
-      </manifest>
-    </jar>
-  </target>
-
-  <target name="clean">
-    <delete dir="${plugin.build.dir}" />
-    <delete file="${plugin.jar}" />
-  </target>
-
-  <target name="clean_install">
-    <delete file="${josm.plugins.dir}/${plugin.name}.jar" />
-  </target>
-
-  <target name="install" depends="dist">
-    <copy file="${plugin.jar}" todir="${josm.plugins.dir}"/>
-  </target>
-
-</project>
