Index: applications/editors/josm/plugins/CommandLine/build.xml
===================================================================
--- applications/editors/josm/plugins/CommandLine/build.xml	(revision 25841)
+++ applications/editors/josm/plugins/CommandLine/build.xml	(revision 26174)
@@ -1,24 +1,20 @@
-<?xml version="1.0" encoding="UTF-8"?>
+<?xml version="1.0" encoding="utf-8"?>
 <project name="CommandLine" default="dist" basedir=".">
-
     <!-- enter the SVN commit message -->
-    <property name="commit.message" value="Moar bugfixes" />
+    <property name="commit.message" value="Moar bugfixes"/>
     <!-- enter the *lowest* JOSM version this plugin is currently compatible with -->
-    <property name="plugin.main.version" value="3835" />
-
-
+    <property name="plugin.main.version" value="3835"/>
     <!--
       ************************************************
       ** should not be necessary to change the following properties
      -->
-    <property name="josm"                   location="../../core/dist/josm-custom.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="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="plugin.dist.dir"        value="../../dist"/>
+    <property name="plugin.dist.dir" value="../../dist"/>
     <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"/>
     <!--
     **********************************************************
@@ -29,5 +25,4 @@
         <mkdir dir="${plugin.build.dir}"/>
     </target>
-
     <!--
     **********************************************************
@@ -42,5 +37,4 @@
         </javac>
     </target>
-
     <!--
     **********************************************************
@@ -56,8 +50,11 @@
             <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>
@@ -85,5 +82,4 @@
         </jar>
     </target>
-
     <!--
     **********************************************************
@@ -94,5 +90,4 @@
     -->
     <target name="revision">
-
         <exec append="false" output="REVISION" executable="svn" failifexecutionfails="false">
             <env key="LANG" value="C"/>
@@ -104,5 +99,4 @@
         <delete file="REVISION"/>
     </target>
-
     <!--
     **********************************************************
@@ -114,5 +108,4 @@
         <delete file="${plugin.jar}"/>
     </target>
-
     <!--
     **********************************************************
@@ -129,6 +122,4 @@
         <copy file="${plugin.jar}" todir="${josm.plugins.dir}"/>
     </target>
-
-
     <!--
     ************************** Publishing the plugin *********************************** 
@@ -149,7 +140,6 @@
         <echo>Building against core revision ${coreversion.info.entry.revision}.</echo>
         <echo>Plugin-Mainversion is set to ${plugin.main.version}.</echo>
-        <delete file="core.info.xml" />
-    </target>
-
+        <delete file="core.info.xml"/>
+    </target>
     <!--
         ** commits the source tree for this plugin
@@ -164,5 +154,4 @@
         </exec>
     </target>
-
     <!--
         ** updates (svn up) the source tree for this plugin
@@ -182,5 +171,4 @@
         </exec>
     </target>
-
     <!--
         ** commits the plugin.jar 
@@ -204,10 +192,9 @@
         </exec>
     </target>
-
     <!-- ** make sure svn is present as a command line tool ** -->
     <target name="ensure-svn-present">
         <exec append="true" output="svn.log" executable="svn" failifexecutionfails="false" failonerror="false" resultproperty="svn.exit.code">
-            <env key="LANG" value="C" />
-            <arg value="--version" />
+            <env key="LANG" value="C"/>
+            <arg value="--version"/>
         </exec>
         <fail message="Fatal: command 'svn --version' failed. Please make sure svn is installed on your system.">
@@ -215,5 +202,5 @@
             <condition>
                 <not>
-                    <isset property="svn.exit.code" />
+                    <isset property="svn.exit.code"/>
                 </not>
             </condition>
@@ -222,9 +209,8 @@
             <!-- error code from SVN? Most likely svn is not what we are looking on this system -->
             <condition>
-                <isfailure code="${svn.exit.code}" />
+                <isfailure code="${svn.exit.code}"/>
             </condition>
         </fail>
     </target>
-
     <target name="publish" depends="ensure-svn-present,core-info,commit-current,update-current,clean,dist,commit-dist">
     </target>
