Changeset 18494 in osm
- Timestamp:
- 2009-11-07T14:55:15+01:00 (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/tageditor/build.xml
r18493 r18494 189 189 <echo>Plugin-Mainversion is '${plugin.main.version}' ...</echo> 190 190 <echo>Plugin-Version is ${version.entry.commit.revision} ...</echo> 191 < if>191 <condition property="difference-in-josm-version"> 192 192 <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> 198 194 <exec append="true" output="svn.log" executable="svn" failifexecutionfails="false"> 199 195 <env key="LANG" value="C"/> … … 204 200 </target> 205 201 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"> 207 207 </target> 208 208 </project>
Note:
See TracChangeset
for help on using the changeset viewer.