Changeset 18488 in osm for applications/editors
- Timestamp:
- 2009-11-07T14:38:45+01:00 (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/tageditor/build.xml
r18385 r18488 18 18 ** 19 19 ** To build against the core in ../../core, create a correct manifest and deploy to 20 ** SVN, run 21 ** 22 ** > ant deploy 20 ** SVN, 21 ** set the properties commit.message and plugin.main.version 22 ** and run 23 ** > ant publish 23 24 ** 24 25 ** 25 26 --> 26 27 <project name="tageditor" default="dist" basedir="."> 27 <!-- 28 29 30 <property name="commit.message" value="Updated build.xml" /> 31 <property name="plugin.main.version" value="2355" /> 32 33 <!-- 28 34 ************************************************ 29 35 ** should not be necessary to change the following properties … … 37 43 <property name="plugin.dist.dir" value="../../dist"/> 38 44 <property name="plugin.jar" value="${plugin.dist.dir}/${ant.project.name}.jar"/> 39 <property name="commit.message" value="" /> 40 45 41 46 <!-- 42 47 ********************************************************** … … 89 94 <attribute name="Plugin-Description" value="Provides a dialog for editing tags in a tabular grid."/> 90 95 <attribute name="Plugin-Link" value="http://wiki.openstreetmap.org/index.php/JOSM/Plugins/TagEditor"/> 91 <attribute name="Plugin-Mainversion" value=" 2355"/>96 <attribute name="Plugin-Mainversion" value="${plugin.main.version}"/> 92 97 <attribute name="Plugin-Version" value="${version.entry.commit.revision}"/> 93 98 </manifest> … … 147 152 </exec> 148 153 <xmlproperty file="core.info.xml" prefix="coreversion" keepRoot="true" collapseAttributes="true"/> 149 <echo>Building against core revision ${coreversion.info.entry.revision} ...</echo> 154 <echo>Building against core revision ${coreversion.info.entry.revision}.</echo> 155 <echo>Plugin-Mainversion is set to ${plugin.main.version}.</echo> 150 156 <delete file="core.info.xml" /> 151 157 </target> … … 153 159 154 160 <target name="commit-current"> 155 <echo>Commiting the plugin source ...</echo>161 <echo>Commiting the plugin source with message '${commit.message}' ...</echo> 156 162 <exec append="true" output="svn.log" executable="svn" failifexecutionfails="false"> 157 163 <env key="LANG" value="C"/> … … 164 170 165 171 <target name="update-current"> 166 <echo>Updating basedir...</echo>172 <echo>Updating plugin source ...</echo> 167 173 <exec append="true" output="svn.log" executable="svn" failifexecutionfails="false"> 168 174 <env key="LANG" value="C"/> … … 179 185 180 186 <target name="commit-dist"> 181 <echo>Commiting ${plugin.jar} ...</echo> 187 <echo>Commiting ${plugin.jar} with message '${commit.message}' ...</echo> 188 <echo>Plugin-Mainversion is '${plugin.main.version}' ...</echo> 189 <echo>Plugin-Version is ${version.entry.commit.revision} ...</echo> 182 190 <exec append="true" output="svn.log" executable="svn" failifexecutionfails="false"> 183 191 <env key="LANG" value="C"/> … … 188 196 </target> 189 197 190 <target name=" deploy" depends="core-info,commit-current,update-current,clean,dist,commit-dist">198 <target name="publish" depends="core-info,commit-current,update-current,clean,dist,commit-dist"> 191 199 </target> 192 200 </project>
Note:
See TracChangeset
for help on using the changeset viewer.