Index: /applications/editors/josm/plugins/tageditor/build.xml
===================================================================
--- /applications/editors/josm/plugins/tageditor/build.xml	(revision 16839)
+++ /applications/editors/josm/plugins/tageditor/build.xml	(revision 16840)
@@ -109,5 +109,5 @@
         <delete file="REVISION"/>
     </target>
-
+	
     <!--
     **********************************************************
@@ -134,3 +134,32 @@
         <copy file="${plugin.jar}" todir="${josm.plugins.dir}"/>
     </target>
+
+	<target name="commit-current">
+	    <exec append="false" output="REVISION" executable="svn" failifexecutionfails="false">
+	                    <env key="LANG" value="C"/>
+	                    <arg value="commit"/>
+	                    <arg value="-m &quot;${commit.message}&quot;"/>
+	                    <arg value="."/>
+	    </exec>	    
+	</target>
+
+	<target name="update-current">
+	    <exec append="false" output="REVISION" executable="svn" failifexecutionfails="false">
+	                    <env key="LANG" value="C"/>
+	                    <arg value="up"/>
+	                    <arg value="."/>
+	    </exec>	    
+	</target>
+	
+	<target name="commit-dist">
+		    <exec append="false" output="REVISION" executable="svn" failifexecutionfails="false">
+		                    <env key="LANG" value="C"/>
+		                    <arg value="commit"/>
+                			<arg value="-m &quot;${commit.message}&quot;"/>
+		                    <arg value="../../dist/${plugin.jar}"/>
+		    </exec>	    
+   	</target>
+	
+	<target name="deploy" depends="commit-current,update-current,dist,commit-dist">
+	</target>
 </project>
