Index: /applications/editors/josm/plugins/tageditor/build.xml
===================================================================
--- /applications/editors/josm/plugins/tageditor/build.xml	(revision 18487)
+++ /applications/editors/josm/plugins/tageditor/build.xml	(revision 18488)
@@ -18,12 +18,18 @@
 **
 ** To build against the core in ../../core, create a correct manifest and deploy to
-** SVN, run
-**
-**    > ant  deploy
+** SVN, 
+**    set the properties commit.message and plugin.main.version
+** and run
+**    > ant  publish
 **
 **
 -->
 <project name="tageditor" default="dist" basedir=".">
-    <!--
+    
+
+	<property name="commit.message" value="Updated build.xml" />		
+	<property name="plugin.main.version" value="2355" />
+
+	<!--
       ************************************************
       ** should not be necessary to change the following properties
@@ -37,6 +43,5 @@
     <property name="plugin.dist.dir"        value="../../dist"/>
     <property name="plugin.jar"             value="${plugin.dist.dir}/${ant.project.name}.jar"/>
-    <property name="commit.message" value="" />	
-
+    
     <!--
     **********************************************************
@@ -89,5 +94,5 @@
                 <attribute name="Plugin-Description" value="Provides a dialog for editing tags in a tabular grid."/>
                 <attribute name="Plugin-Link" value="http://wiki.openstreetmap.org/index.php/JOSM/Plugins/TagEditor"/>
-                <attribute name="Plugin-Mainversion" value="2355"/>
+                <attribute name="Plugin-Mainversion" value="${plugin.main.version}"/>
                 <attribute name="Plugin-Version" value="${version.entry.commit.revision}"/>
             </manifest>
@@ -147,5 +152,6 @@
         </exec>
         <xmlproperty file="core.info.xml" prefix="coreversion" keepRoot="true" collapseAttributes="true"/>
-		<echo>Building against core revision ${coreversion.info.entry.revision} ...</echo>
+		<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>
@@ -153,5 +159,5 @@
 	
 	<target name="commit-current">
-		<echo>Commiting the plugin source ...</echo>
+		<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"/>
@@ -164,5 +170,5 @@
 	
 	<target name="update-current">
-		<echo>Updating basedir ...</echo>
+		<echo>Updating plugin source ...</echo>
 	    <exec append="true" output="svn.log" executable="svn" failifexecutionfails="false">
 	                    <env key="LANG" value="C"/>
@@ -179,5 +185,7 @@
 	
 	<target name="commit-dist">
-			<echo>Commiting ${plugin.jar} ...</echo>
+			<echo>Commiting ${plugin.jar} with message '${commit.message}' ...</echo>
+			<echo>Plugin-Mainversion is '${plugin.main.version}' ...</echo>
+			<echo>Plugin-Version is ${version.entry.commit.revision} ...</echo>
 		    <exec append="true" output="svn.log" executable="svn" failifexecutionfails="false">
 		                    <env key="LANG" value="C"/>
@@ -188,5 +196,5 @@
    	</target>
 	
-	<target name="deploy" depends="core-info,commit-current,update-current,clean,dist,commit-dist">
+	<target name="publish" depends="core-info,commit-current,update-current,clean,dist,commit-dist">
 	</target>
 </project>
