Ignore:
Timestamp:
2011-07-18T20:05:18+02:00 (13 years ago)
Author:
akks
Message:

Initial infomode commit

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
  • applications/editors/josm/plugins/00_plugin_dir_template/build.xml

    r26174 r26362  
    2828**
    2929-->
    30 <project name="myPluginName" default="dist" basedir=".">
     30<project name="InfoMode" default="dist" basedir=".">
    3131    <!-- enter the SVN commit message -->
    32     <property name="commit.message" value="Commit message"/>
     32    <property name="commit.message" value="InfoMode initial commit"/>
    3333    <!-- 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"/>
    3535    <!-- should not be necessary to change the following properties -->
    3636    <property name="josm" location="../../core/dist/josm-custom.jar"/>
     
    9494            -->
    9595            <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"/>
    9898                <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"/>
    102103                <attribute name="Plugin-Mainversion" value="${plugin.main.version}"/>
    103104                <attribute name="Plugin-Version" value="${version.entry.commit.revision}"/>
     
    231232    <target name="publish" depends="ensure-svn-present,core-info,commit-current,update-current,clean,dist,commit-dist">
    232233    </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
    233240</project>
Note: See TracChangeset for help on using the changeset viewer.