Ignore:
Timestamp:
2009-11-07T14:55:15+01:00 (15 years ago)
Author:
guggis
Message:

Updated

File:
1 edited

Legend:

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

    r18493 r18494  
    189189                        <echo>Plugin-Mainversion is '${plugin.main.version}' ...</echo>
    190190                        <echo>Plugin-Version is ${version.entry.commit.revision} ...</echo>
    191                         <if>
     191                        <condition property="difference-in-josm-version">
    192192                                <equals arg1="${plugin.main.version}" arg2="${coreversion.info.entry.revision}" />
    193                                 <then></then>
    194                                 <else>                         
    195                         <echo level="warning" if="${difference-in-josm-version}">!!!WARNING!!! Plugin-Mainversion is not equal to the JOSM version used in this build. !!!WARNING!!!</echo>
    196                                 </else>
    197                         </if>
     193                        </condition>
    198194                    <exec append="true" output="svn.log" executable="svn" failifexecutionfails="false">
    199195                                    <env key="LANG" value="C"/>
     
    204200        </target>
    205201       
    206         <target name="publish" depends="core-info,commit-current,update-current,clean,dist,commit-dist">
     202        <target name="warn-difference-in-josm-version" if="${difference-in-josm-version}">
     203                <echo level="warning" if="${difference-in-josm-version}">!!!WARNING!!! Plugin-Mainversion is not equal to the JOSM version used in this build. !!!WARNING!!!</echo>
     204        </target>
     205       
     206        <target name="publish" depends="core-info,commit-current,update-current,clean,dist,commit-dist,warn-difference-in-josm-version">
    207207        </target>
    208208</project>
Note: See TracChangeset for help on using the changeset viewer.