Index: applications/editors/josm/plugins/ElevationProfile/build.xml
===================================================================
--- applications/editors/josm/plugins/ElevationProfile/build.xml	(revision 26034)
+++ applications/editors/josm/plugins/ElevationProfile/build.xml	(revision 26174)
@@ -1,3 +1,3 @@
-<?xml version="1.0" encoding="UTF-8"?>
+<?xml version="1.0" encoding="utf-8"?>
 <!--
 ** This is a template build file for a JOSM  plugin.
@@ -26,13 +26,12 @@
       ** should not be necessary to change the following properties
      -->
-	<property name="josm"          location="../../core/dist/josm-custom.jar"/>
-	<property name="josm_stable"   location="../../core/dist/3529/josm-tested.jar"/>
-    <property name="plugin.build.dir"       value="build"/>
-    <property name="plugin.src.dir"         value="src"/>
+    <property name="josm" location="../../core/dist/josm-custom.jar"/>
+    <property name="josm_stable" location="../../core/dist/3529/josm-tested.jar"/>
+    <property name="plugin.build.dir" value="build"/>
+    <property name="plugin.src.dir" value="src"/>
     <!-- this is the directory where the plugin jar is copied to -->
     <property name="ant.build.javac.target" value="1.5"/>
-    <property name="plugin.dist.dir"        value="../../dist"/>
-    <property name="plugin.jar"             value="${plugin.dist.dir}/${ant.project.name}.jar"/>
-
+    <property name="plugin.dist.dir" value="../../dist"/>
+    <property name="plugin.jar" value="${plugin.dist.dir}/${ant.project.name}.jar"/>
     <!--
     **********************************************************
@@ -43,5 +42,4 @@
         <mkdir dir="${plugin.build.dir}"/>
     </target>
-
     <!--
     **********************************************************
@@ -56,5 +54,4 @@
         </javac>
     </target>
-
     <!--
     **********************************************************
@@ -63,27 +60,25 @@
     -->
     <target name="dist" depends="compile,revision">
-    	<condition property="josm.dist.dir" value="../../dist" else="dist">
-    	    	            <and>
-    	    	                <os family="windows"/>
-    	    	            </and>
-    	    	        </condition>
-    	<mkdir dir="${plugin.dist.dir}"/>
+        <condition property="josm.dist.dir" value="../../dist" else="dist">
+            <and>
+                <os family="windows"/>
+            </and>
+        </condition>
+        <mkdir dir="${plugin.dist.dir}"/>
         <echo message="creating ${plugin.jar} ... "/>
-    	<!--
-        <copy todir="${plugin.build.dir}/resources">
-            <fileset dir="resources"/>
-        </copy>
-        -->        
         <copy todir="${plugin.build.dir}/images">
             <fileset dir="images"/>
         </copy>
+        <copy todir="${plugin.build.dir}/data">
+            <fileset dir="data"/>
+        </copy>
         <copy todir="${plugin.build.dir}">
             <fileset dir=".">
-                <include name="README" />
-                <include name="LICENSE" />
+                <include name="README"/>
+                <include name="LICENSE"/>
             </fileset>
         </copy>
         <jar destfile="${plugin.jar}" basedir="${plugin.build.dir}">
-    <!--
+            <!--
         ************************************************
         ** configure these properties. Most of them will be copied to the plugins
@@ -98,13 +93,12 @@
                 <attribute name="Plugin-Date" value="${version.entry.commit.date}"/>
                 <attribute name="Plugin-Description" value="Shows the elevation profile and some statistical data of a GPX track."/>
-            	<attribute name="de_Plugin-Description" value="Zeigt das Höhenprofil und statistische Werte eines GPX-Tracks."/>
+                <attribute name="de_Plugin-Description" value="Zeigt das Höhenprofil und statistische Werte eines GPX-Tracks."/>
                 <attribute name="Plugin-Link" value="http://wiki.openstreetmap.org/wiki/JOSM/Plugins/ElevationProfile"/>
                 <attribute name="Plugin-Mainversion" value="3835"/>
                 <attribute name="Plugin-Version" value="${version.entry.commit.revision}"/>
-            	<attribute name="Plugin-Icon" value="images/elevation.png"/>
+                <attribute name="Plugin-Icon" value="images/elevation.png"/>
             </manifest>
-        </jar>        
+        </jar>
     </target>
-
     <!--
     **********************************************************
@@ -115,15 +109,14 @@
     -->
     <target name="revision">
-		<exec append="false" output="REVISION" executable="svn" failifexecutionfails="false">
-    	            <env key="LANG" value="C"/>
-    	            <arg value="info"/>
-    	            <arg value="--xml"/>
-    	            <arg value="build.xml"/>
-    	        </exec>
-    	<xmlproperty file="REVISION" prefix="version" keepRoot="false" collapseAttributes="true"/>
-    	<echo message="Revision: ${version.entry.commit.revision}"/>
-    	<delete file="REVISION"/>
-   	</target>
-
+        <exec append="false" output="REVISION" executable="svn" failifexecutionfails="false">
+            <env key="LANG" value="C"/>
+            <arg value="info"/>
+            <arg value="--xml"/>
+            <arg value="build.xml"/>
+        </exec>
+        <xmlproperty file="REVISION" prefix="version" keepRoot="false" collapseAttributes="true"/>
+        <echo message="Revision: ${version.entry.commit.revision}"/>
+        <delete file="REVISION"/>
+    </target>
     <!--
     **********************************************************
@@ -135,5 +128,4 @@
         <delete file="${plugin.jar}"/>
     </target>
-
     <!--
     **********************************************************
@@ -147,5 +139,5 @@
                 <os family="windows"/>
             </and>
-        </condition>    	
+        </condition>
         <copy file="${plugin.jar}" todir="${josm.plugins.dir}"/>
     </target>
