Changeset 16851 in osm for applications/editors
- Timestamp:
- 2009-08-04T17:28:24+02:00 (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/tageditor/build.xml
r16848 r16851 13 13 ** > ant dist 14 14 ** 15 ** To install the generated plugin locally (in you default plugin directory) run15 ** To install the generated plugin locally (in your default plugin directory) run 16 16 ** 17 17 ** > ant install 18 18 ** 19 ** The generated plugin jar is not automatically available in JOSMs plugin configuration 20 ** dialog. You have to check it in first. 19 ** To build against the core in ../../core, create a correct manifest and deploy to 20 ** SVN, run 21 ** 22 ** > ant deploy 23 ** 21 24 ** 22 25 --> … … 34 37 <property name="plugin.dist.dir" value="../../dist"/> 35 38 <property name="plugin.jar" value="${plugin.dist.dir}/${ant.project.name}.jar"/> 39 <property name="commit.message" value="" /> 36 40 37 41 <!-- … … 85 89 <attribute name="Plugin-Description" value="Provides a dialog for editing tags in a tabular grid."/> 86 90 <attribute name="Plugin-Link" value="http://wiki.openstreetmap.org/index.php/JOSM/Plugins/TagEditor"/> 87 <attribute name="Plugin-Mainversion" value=" 1900"/>91 <attribute name="Plugin-Mainversion" value="${coreversion.info.entry.revision}"/> 88 92 <attribute name="Plugin-Version" value="${version.entry.commit.revision}"/> 89 93 </manifest> … … 135 139 </target> 136 140 141 <target name="core-info"> 142 <exec append="false" output="core.info.xml" executable="svn" failifexecutionfails="false"> 143 <env key="LANG" value="C"/> 144 <arg value="info"/> 145 <arg value="--xml"/> 146 <arg value="../../core"/> 147 </exec> 148 <xmlproperty file="core.info.xml" prefix="coreversion" keepRoot="true" collapseAttributes="true"/> 149 <echo>Building against core revision ${coreversion.info.entry.revision} ...</echo> 150 <delete file="core.info.xml" /> 151 </target> 152 153 137 154 <target name="commit-current"> 138 155 <exec append="true" output="svn.log" executable="svn" failifexecutionfails="false"> … … 144 161 </target> 145 162 163 146 164 <target name="update-current"> 147 165 <echo>Updating basedir ...</echo> … … 169 187 </target> 170 188 171 <target name="deploy" depends="co mmit-current,update-current,dist,commit-dist">189 <target name="deploy" depends="core-info,commit-current,update-current,dist,commit-dist"> 172 190 </target> 173 191 </project>
Note:
See TracChangeset
for help on using the changeset viewer.