Index: applications/editors/josm/plugins/epsg31287/build.xml
===================================================================
--- applications/editors/josm/plugins/epsg31287/build.xml	(revision 23662)
+++ applications/editors/josm/plugins/epsg31287/build.xml	(revision 23663)
@@ -30,6 +30,10 @@
 <project name="epsg31287" default="dist" basedir=".">
 
+    <!-- read build.properties for local settings -->
+    <property file="build.properties" />
+    <!-- enter the SVN command file name -->
+    <property name="svn" value="svn.cmd" />
     <!-- enter the SVN commit message -->
-    <property name="commit.message" value="Commit message" />
+    <property name="commit.message" value="Initial release" />
     <!-- enter the *lowest* JOSM version this plugin is currently compatible with -->
     <property name="plugin.main.version" value="3592" />
@@ -124,5 +128,5 @@
     <target name="revision">
 
-        <exec append="false" output="REVISION" executable="svn" failifexecutionfails="false">
+        <exec append="false" output="REVISION" executable="${svn}" failifexecutionfails="false">
             <env key="LANG" value="C"/>
             <arg value="info"/>
@@ -169,5 +173,5 @@
         -->
     <target name="core-info">
-        <exec append="false" output="core.info.xml" executable="svn" failifexecutionfails="false">
+        <exec append="false" output="core.info.xml" executable="${svn}" failifexecutionfails="false">
             <env key="LANG" value="C"/>
             <arg value="info"/>
@@ -186,9 +190,13 @@
     <target name="commit-current">
         <echo>Commiting the plugin source with message '${commit.message}' ...</echo>
-        <exec append="true" output="svn.log" executable="svn" failifexecutionfails="false">
+        <exec append="true" output="svn.log" executable="${svn}" failifexecutionfails="false">
             <env key="LANG" value="C"/>
             <arg value="commit"/>
             <arg value="-m '${commit.message}'"/>
             <arg value="."/>
+        	<arg value="${svn.username_arg}"/>
+        	<arg value="${svn.username}"/>
+        	<arg value="${svn.password_arg}"/>
+        	<arg value="${svn.password}"/>
         </exec>
     </target>
@@ -199,5 +207,5 @@
     <target name="update-current">
         <echo>Updating plugin source ...</echo>
-        <exec append="true" output="svn.log" executable="svn" failifexecutionfails="false">
+        <exec append="true" output="svn.log" executable="${svn}" failifexecutionfails="false">
             <env key="LANG" value="C"/>
             <arg value="up"/>
@@ -205,5 +213,5 @@
         </exec>
         <echo>Updating ${plugin.jar} ...</echo>
-        <exec append="true" output="svn.log" executable="svn" failifexecutionfails="false">
+        <exec append="true" output="svn.log" executable="${svn}" failifexecutionfails="false">
             <env key="LANG" value="C"/>
             <arg value="up"/>
@@ -226,9 +234,13 @@
     Now commiting ${plugin.jar} ...
     </echo>
-        <exec append="true" output="svn.log" executable="svn" failifexecutionfails="false">
+        <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}"/>
+        	<arg value="${svn.username_arg}"/>
+        	<arg value="${svn.username}"/>
+        	<arg value="${svn.password_arg}"/>
+        	<arg value="${svn.password}"/>
         </exec>
     </target>
@@ -236,5 +248,5 @@
     <!-- ** 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">
+        <exec append="true" output="svn.log" executable="${svn}" failifexecutionfails="false" failonerror="false" resultproperty="svn.exit.code">
             <env key="LANG" value="C" />
             <arg value="--version" />
