Changeset 16840 in osm for applications/editors/josm


Ignore:
Timestamp:
2009-08-04T16:39:23+02:00 (15 years ago)
Author:
guggis
Message:

${commit.message}

File:
1 edited

Legend:

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

    r16605 r16840  
    109109        <delete file="REVISION"/>
    110110    </target>
    111 
     111       
    112112    <!--
    113113    **********************************************************
     
    134134        <copy file="${plugin.jar}" todir="${josm.plugins.dir}"/>
    135135    </target>
     136
     137        <target name="commit-current">
     138            <exec append="false" output="REVISION" executable="svn" failifexecutionfails="false">
     139                            <env key="LANG" value="C"/>
     140                            <arg value="commit"/>
     141                            <arg value="-m &quot;${commit.message}&quot;"/>
     142                            <arg value="."/>
     143            </exec>         
     144        </target>
     145
     146        <target name="update-current">
     147            <exec append="false" output="REVISION" executable="svn" failifexecutionfails="false">
     148                            <env key="LANG" value="C"/>
     149                            <arg value="up"/>
     150                            <arg value="."/>
     151            </exec>         
     152        </target>
     153       
     154        <target name="commit-dist">
     155                    <exec append="false" output="REVISION" executable="svn" failifexecutionfails="false">
     156                                    <env key="LANG" value="C"/>
     157                                    <arg value="commit"/>
     158                                        <arg value="-m &quot;${commit.message}&quot;"/>
     159                                    <arg value="../../dist/${plugin.jar}"/>
     160                    </exec>         
     161        </target>
     162       
     163        <target name="deploy" depends="commit-current,update-current,dist,commit-dist">
     164        </target>
    136165</project>
Note: See TracChangeset for help on using the changeset viewer.