Changeset 26362 in osm
- Timestamp:
- 2011-07-18T20:05:18+02:00 (13 years ago)
- Location:
- applications/editors/josm/plugins/00_plugin_dir_template
- Files:
-
- 13 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/00_plugin_dir_template
-
Property svn:ignore
set to
build
-
Property svn:ignore
set to
-
applications/editors/josm/plugins/00_plugin_dir_template/build.xml
r26174 r26362 28 28 ** 29 29 --> 30 <project name=" myPluginName" default="dist" basedir=".">30 <project name="InfoMode" default="dist" basedir="."> 31 31 <!-- enter the SVN commit message --> 32 <property name="commit.message" value=" Commit message"/>32 <property name="commit.message" value="InfoMode initial commit"/> 33 33 <!-- enter the *lowest* JOSM version this plugin is currently compatible with --> 34 <property name="plugin.main.version" value=" "/>34 <property name="plugin.main.version" value="4201"/> 35 35 <!-- should not be necessary to change the following properties --> 36 36 <property name="josm" location="../../core/dist/josm-custom.jar"/> … … 94 94 --> 95 95 <manifest> 96 <attribute name="Author" value=" ..."/>97 <attribute name="Plugin-Class" value=" ..."/>96 <attribute name="Author" value="Alexei Kasatkin"/> 97 <attribute name="Plugin-Class" value="org.openstreetmap.josm.plugins.infomode.InfoModePlugin"/> 98 98 <attribute name="Plugin-Date" value="${version.entry.commit.date}"/> 99 <attribute name="Plugin-Description" value="..."/> 100 <attribute name="Plugin-Icon" value="..."/> 101 <attribute name="Plugin-Link" value="..."/> 99 <attribute name="Plugin-Description" value="Extra information about current layer objects pop ups - currently GPX trackpoint info"/> 100 <!-- <attribute name="Plugin-Icon" value="..."/> --> 101 <attribute name="Plugin-Link" value="http://wiki.openstreetmap.org/wiki/JOSM/Plugins/InfoMode"/> 102 <attribute name="ru_Plugin-Link" value="http://wiki.openstreetmap.org/wiki/RU:JOSM/Plugins/InfoMode"/> 102 103 <attribute name="Plugin-Mainversion" value="${plugin.main.version}"/> 103 104 <attribute name="Plugin-Version" value="${version.entry.commit.revision}"/> … … 231 232 <target name="publish" depends="ensure-svn-present,core-info,commit-current,update-current,clean,dist,commit-dist"> 232 233 </target> 234 <target name="runjosm" depends="install"> 235 <java jar="${josm}" fork="true"> 236 <arg line="../../core/data_nodist/munich.gpx"/> 237 </java> 238 </target> 239 233 240 </project>
Note:
See TracChangeset
for help on using the changeset viewer.