Index: /applications/editors/josm/plugins/tageditor/build.xml
===================================================================
--- /applications/editors/josm/plugins/tageditor/build.xml	(revision 18521)
+++ /applications/editors/josm/plugins/tageditor/build.xml	(revision 18522)
@@ -145,83 +145,78 @@
 
 	<!--
-	  ** extracts the JOSM release for the JOSM version in ../core and saves it in the 
-	  ** property ${coreversion.info.entry.revision}
-	  **
+	 ************************** Publishing the plugin *********************************** 
 	-->
-	<target name="core-info">
-        <exec append="false" output="core.info.xml" executable="svn" failifexecutionfails="false">
-                    <env key="LANG" value="C"/>
-                    <arg value="info"/>
-                    <arg value="--xml"/>
-                    <arg value="../../core"/>
-        </exec>
-        <xmlproperty file="core.info.xml" prefix="coreversion" keepRoot="true" collapseAttributes="true"/>
-		<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>
-
-	<!--
-	 ** commits the source tree for this plugin
-	-->
-	<target name="commit-current">
-		<echo>Commiting the plugin source with message '${commit.message}' ...</echo>
-	    <exec append="true" output="svn.log" executable="svn" failifexecutionfails="false">
+		<!--
+		  ** extracts the JOSM release for the JOSM version in ../core and saves it in the 
+		  ** property ${coreversion.info.entry.revision}
+		  **
+		-->
+		<target name="core-info">
+	        <exec append="false" output="core.info.xml" executable="svn" failifexecutionfails="false">
 	                    <env key="LANG" value="C"/>
-	                    <arg value="commit"/>
-	                    <arg value="-m &quot;${commit.message}&quot;"/>
-	                    <arg value="."/>
-	    </exec>	    
-	</target>
-
-	<!--
-	** updates (svn up) the source tree for this plugin
-	-->
-	<target name="update-current">
-		<echo>Updating plugin source ...</echo>
-	    <exec append="true" output="svn.log" executable="svn" failifexecutionfails="false">
-	                    <env key="LANG" value="C"/>
-	                    <arg value="up"/>
-	                    <arg value="."/>
-	    </exec>	    
-		<echo>Updating ${plugin.jar} ...</echo>
-	    <exec append="true" output="svn.log" executable="svn" failifexecutionfails="false">
-	                    <env key="LANG" value="C"/>
-	                    <arg value="up"/>
-	                    <arg value="../dist/${plugin.jar}"/>
-	    </exec>	    
-	</target>
-	
-	<!--
-	 ** commits the plugin.jar 
-	 -->
-	<target name="commit-dist">
-			<echo>Commiting ${plugin.jar} with message '${commit.message}' ...</echo>
-			<echo>Plugin-Mainversion is ${plugin.main.version} ...</echo>
-			<echo>JOSM build version is ${coreversion.info.entry.revision} ...</echo>
-			<echo>Plugin-Version is ${version.entry.commit.revision} ...</echo>
-			<condition property="difference-in-josm-version">
-				<equals arg1="${plugin.main.version}" arg2="${coreversion.info.entry.revision}" />
-			</condition>
+	                    <arg value="info"/>
+	                    <arg value="--xml"/>
+	                    <arg value="../../core"/>
+	        </exec>
+	        <xmlproperty file="core.info.xml" prefix="coreversion" keepRoot="true" collapseAttributes="true"/>
+			<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>
+
+		<!--
+		 ** commits the source tree for this plugin
+		-->
+		<target name="commit-current">
+			<echo>Commiting the plugin source with message '${commit.message}' ...</echo>
 		    <exec append="true" output="svn.log" executable="svn" failifexecutionfails="false">
 		                    <env key="LANG" value="C"/>
 		                    <arg value="commit"/>
-                			<arg value="-m &quot;${commit.message}&quot;"/>
+		                    <arg value="-m '${commit.message}'"/>
+		                    <arg value="."/>
+		    </exec>	    
+		</target>
+
+		<!--
+		** updates (svn up) the source tree for this plugin
+		-->
+		<target name="update-current">
+			<echo>Updating plugin source ...</echo>
+		    <exec append="true" output="svn.log" executable="svn" failifexecutionfails="false">
+		                    <env key="LANG" value="C"/>
+		                    <arg value="up"/>
+		                    <arg value="."/>
+		    </exec>	    
+			<echo>Updating ${plugin.jar} ...</echo>
+		    <exec append="true" output="svn.log" executable="svn" failifexecutionfails="false">
+		                    <env key="LANG" value="C"/>
+		                    <arg value="up"/>
 		                    <arg value="../dist/${plugin.jar}"/>
 		    </exec>	    
-   	</target>
-	
-	<!--
-	 ** outputs a warning if the JOSM version inserted in the plugin manifest isn't equal to the
-	 ** the JOSM version the plugin was built against. 
-	 **
-	 ** This isn't necessarily an error but it is a sign that something could be wrong.
-	-->
-	<target name="warn-difference-in-josm-version" unless="${difference-in-josm-version}">
-		<echo level="warning">!!!WARNING!!! Plugin-Mainversion is not equal to the JOSM version used in this build. !!!WARNING!!!</echo>
-	</target>
-	
-	<target name="publish" depends="core-info,commit-current,update-current,clean,dist,commit-dist,warn-difference-in-josm-version">
-	</target>
+		</target>
+		
+		<!--
+		 ** commits the plugin.jar 
+		 -->
+		<target name="commit-dist">
+				<echo>
+***** Properties of published ${plugin.jar} *****
+Commit message    : '${commit.message}'					
+Plugin-Mainversion: ${plugin.main.version}
+JOSM build version: ${coreversion.info.entry.revision}
+Plugin-Version    : ${version.entry.commit.revision}
+***** / Properties of published ${plugin.jar} *****					
+					
+Now commiting ${plugin.jar} ...
+</echo>					
+			    <exec append="true" output="svn.log" executable="svn" failifexecutionfails="false">
+			                    <env key="LANG" value="C"/>
+				    			<arg value="-m '${commit.message}'"/>
+			    				<arg value="commit"/>	                			
+            			        <arg value="${plugin.jar}"/>
+			    </exec>	    
+	   	</target>
+				
+		<target name="publish" depends="core-info,commit-current,update-current,clean,dist,commit-dist">
+		</target>
 </project>
