Changeset 23465 in osm for applications/editors


Ignore:
Timestamp:
2010-10-03T22:06:16+02:00 (14 years ago)
Author:
postfix
Message:

'some new internationalized messages'

File:
1 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/smed/build.xml

    r23457 r23465  
    3131
    3232        <!-- enter the SVN commit message -->
    33         <property name="commit.message" value="New release" />
     33        <property name="commit.message" value="some new internationalized messages" />
    3434        <!-- enter the *lowest* JOSM version this plugin is currently compatible with -->
    3535        <property name="plugin.main.version" value="3514" />
     
    155155                <copy file="${plugin.jar}" todir="${josm.plugins.dir}"/>
    156156        </target>
     157       
     158        <!--
     159                ** commits the source tree for this plugin
     160                -->
     161        <target name="commit-current">
     162                <echo>Commiting the plugin source with message '${commit.message}' ...</echo>
     163                <exec append="true" output="svn.log" executable="svn" failifexecutionfails="false">
     164                        <env key="LANG" value="C"/>
     165                        <arg value="commit"/>
     166                        <arg value="-m '${commit.message}'"/>
     167                        <arg value="."/>
     168                </exec>
     169        </target>
     170
     171        <!--
     172                ** updates (svn up) the source tree for this plugin
     173                -->
     174        <target name="update-current">
     175                <echo>Updating plugin source ...</echo>
     176                <exec append="true" output="svn.log" executable="svn" failifexecutionfails="false">
     177                        <env key="LANG" value="C"/>
     178                        <arg value="up"/>
     179                        <arg value="."/>
     180                </exec>
     181                <echo>Updating ${plugin.jar} ...</echo>
     182                <exec append="true" output="svn.log" executable="svn" failifexecutionfails="false">
     183                        <env key="LANG" value="C"/>
     184                        <arg value="up"/>
     185                        <arg value="../dist/${plugin.jar}"/>
     186                </exec>
     187        </target>
     188
    157189</project>
Note: See TracChangeset for help on using the changeset viewer.