Index: applications/editors/josm/plugins/trustosm/build.xml
===================================================================
--- applications/editors/josm/plugins/trustosm/build.xml	(revision 26056)
+++ applications/editors/josm/plugins/trustosm/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.
@@ -29,25 +29,21 @@
 -->
 <project name="trustosm" default="dist" basedir=".">
-
-	<!-- enter the SVN commit message -->
-	<property name="commit.message" value="New plugin for digital signing osm data" />
-	<!-- enter the *lowest* JOSM version this plugin is currently compatible with -->
-	<property name="plugin.main.version" value="3329" />
-
-
+    <!-- enter the SVN commit message -->
+    <property name="commit.message" value="New plugin for digital signing osm data"/>
+    <!-- enter the *lowest* JOSM version this plugin is currently compatible with -->
+    <property name="plugin.main.version" value="3329"/>
     <!--
       ************************************************
       ** 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="plugin.lib.dir"         value="lib"/>
-	<!-- this is the directory where the plugin jar is copied to -->
-	<property name="plugin.dist.dir"        value="../../dist"/>
-	<property name="ant.build.javac.target" value="1.6"/>
-	<property name="plugin.dist.dir"        value="../../dist"/>
-	<property name="plugin.jar"             value="${plugin.dist.dir}/${ant.project.name}.jar"/>
-
+    <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="plugin.lib.dir" value="lib"/>
+    <!-- this is the directory where the plugin jar is copied to -->
+    <property name="plugin.dist.dir" value="../../dist"/>
+    <property name="ant.build.javac.target" value="1.6"/>
+    <property name="plugin.dist.dir" value="../../dist"/>
+    <property name="plugin.jar" value="${plugin.dist.dir}/${ant.project.name}.jar"/>
     <!--
     **********************************************************
@@ -58,5 +54,4 @@
         <mkdir dir="${plugin.build.dir}"/>
     </target>
-
     <!--
     **********************************************************
@@ -64,66 +59,61 @@
     **********************************************************
     -->
-	<target name="compile" depends="init">
-		<echo message="compiling sources for  ${plugin.jar} ... "/>
-		<javac srcdir="src" classpath="${josm}" debug="true" destdir="${plugin.build.dir}">
-			<compilerarg value="-Xlint:deprecation"/>
-			<compilerarg value="-Xlint:unchecked"/>
-			<classpath>
-				<pathelement location="${josm}"/>
-				<fileset dir="${plugin.lib.dir}">
-					<include name="**/*.jar"/>
-				</fileset>
-			</classpath>
-		</javac>
-	</target>
-
-	
-	<!-- create a property containing all .jar files, prefix lib/, and seperated with a space -->
-	  <pathconvert property="libs.project" pathsep=" ">
-	    <mapper>
-	      <chainedmapper>
-
-	        <!-- remove absolute path -->
-	        <flattenmapper />
-
-	        <!-- add lib/ prefix -->
-	        <globmapper from="*" to="${ant.project.name}/lib/*" />
-	      </chainedmapper>
-	    </mapper>
-
-	    <path>
-
-	      <!-- plugin.lib.dir contains all jar files -->
-	      <fileset dir="${plugin.lib.dir}">
-	        <include name="**/*.jar" />
-	      </fileset>
-	    </path>
-	  </pathconvert>
-
-	
-	<!--
+    <target name="compile" depends="init">
+        <echo message="compiling sources for  ${plugin.jar} ... "/>
+        <javac srcdir="src" classpath="${josm}" debug="true" destdir="${plugin.build.dir}">
+            <compilerarg value="-Xlint:deprecation"/>
+            <compilerarg value="-Xlint:unchecked"/>
+            <classpath>
+                <pathelement location="${josm}"/>
+                <fileset dir="${plugin.lib.dir}">
+                    <include name="**/*.jar"/>
+                </fileset>
+            </classpath>
+        </javac>
+    </target>
+    <!-- create a property containing all .jar files, prefix lib/, and seperated with a space -->
+    <pathconvert property="libs.project" pathsep=" ">
+        <mapper>
+            <chainedmapper>
+                <!-- remove absolute path -->
+                <flattenmapper/>
+                <!-- add lib/ prefix -->
+                <globmapper from="*" to="${ant.project.name}/lib/*"/>
+            </chainedmapper>
+        </mapper>
+        <path>
+            <!-- plugin.lib.dir contains all jar files -->
+            <fileset dir="${plugin.lib.dir}">
+                <include name="**/*.jar"/>
+            </fileset>
+        </path>
+    </pathconvert>
+    <!--
     **********************************************************
     ** dist - creates the plugin jar
     **********************************************************
     -->
-	<target name="dist" depends="compile,revision">
-		<echo message="creating ${ant.project.name}.jar ... "/>
-		<copy todir="${plugin.build.dir}/lib">
-			<fileset dir="${plugin.lib.dir}"/>
-		</copy>
-		<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}">
-			<fileset dir=".">
-				<include name="README" />
-				<include name="LICENSE" />
-			</fileset>
-		</copy>
-		<jar destfile="${plugin.jar}" basedir="${plugin.build.dir}">
-			<!--
+    <target name="dist" depends="compile,revision">
+        <echo message="creating ${ant.project.name}.jar ... "/>
+        <copy todir="${plugin.build.dir}/lib">
+            <fileset dir="${plugin.lib.dir}"/>
+        </copy>
+        <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"/>
+            </fileset>
+        </copy>
+        <jar destfile="${plugin.jar}" basedir="${plugin.build.dir}">
+            <!--
         ************************************************
         ** configure these properties. Most of them will be copied to the plugins
@@ -133,18 +123,17 @@
         ************************************************
     -->
-			<manifest>
-				<attribute name="Author" value="Christoph Wagner"/>
-				<attribute name="Class-Path" value="${libs.project}" />
-				<attribute name="Plugin-Class" value="org.openstreetmap.josm.plugins.trustosm.TrustOSMplugin"/>
-				<attribute name="Plugin-Date" value="${version.entry.commit.date}"/>
-				<attribute name="Plugin-Description" value="Plugin to digital sign OSM-Data"/>
-				<attribute name="Plugin-Icon" value="trustosm"/>
-				<attribute name="Plugin-Link" value="..."/>
-				<attribute name="Plugin-Mainversion" value="${plugin.main.version}"/>
-				<attribute name="Plugin-Version" value="${version.entry.commit.revision}"/>
-			</manifest>
-		</jar>
-	</target>
-
+            <manifest>
+                <attribute name="Author" value="Christoph Wagner"/>
+                <attribute name="Class-Path" value="${libs.project}"/>
+                <attribute name="Plugin-Class" value="org.openstreetmap.josm.plugins.trustosm.TrustOSMplugin"/>
+                <attribute name="Plugin-Date" value="${version.entry.commit.date}"/>
+                <attribute name="Plugin-Description" value="Plugin to digital sign OSM-Data"/>
+                <attribute name="Plugin-Icon" value="trustosm"/>
+                <attribute name="Plugin-Link" value="..."/>
+                <attribute name="Plugin-Mainversion" value="${plugin.main.version}"/>
+                <attribute name="Plugin-Version" value="${version.entry.commit.revision}"/>
+            </manifest>
+        </jar>
+    </target>
     <!--
     **********************************************************
@@ -155,5 +144,4 @@
     -->
     <target name="revision">
-
         <exec append="false" output="REVISION" executable="svn" failifexecutionfails="false">
             <env key="LANG" value="C"/>
@@ -165,5 +153,4 @@
         <delete file="REVISION"/>
     </target>
-
     <!--
     **********************************************************
@@ -175,5 +162,4 @@
         <delete file="${plugin.jar}"/>
     </target>
-
     <!--
     **********************************************************
@@ -190,6 +176,4 @@
         <copy file="${plugin.jar}" todir="${josm.plugins.dir}"/>
     </target>
-
-
     <!--
     ************************** Publishing the plugin *********************************** 
@@ -210,7 +194,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
@@ -225,5 +208,4 @@
         </exec>
     </target>
-
     <!--
         ** updates (svn up) the source tree for this plugin
@@ -243,5 +225,4 @@
         </exec>
     </target>
-
     <!--
         ** commits the plugin.jar 
@@ -265,10 +246,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.">
@@ -276,5 +256,5 @@
             <condition>
                 <not>
-                    <isset property="svn.exit.code" />
+                    <isset property="svn.exit.code"/>
                 </not>
             </condition>
@@ -283,9 +263,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>
