Changeset 28994 in osm


Ignore:
Timestamp:
2012-11-27T17:30:13+01:00 (12 years ago)
Author:
donvip
Message:

[josm_tag2link] Simplify build.xml

Location:
applications/editors/josm/plugins/tag2link
Files:
2 edited
1 moved

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/tag2link/README

    r26917 r28994  
    55
    66    * Author: Don-vip & FrViPofm
    7     * License: GPL v3 (see gpl-3.0.txt)
     7    * License: GPL v3 (see LICENSE)
    88   
    9 This plugin allows to TODO.
     9This plugin allows to launch browser to a Web resource about a selected object having known tags, such as Wikipedia.
    1010
    1111See http://wiki.openstreetmap.org/wiki/JOSM/Plugins/Tag2Link
  • applications/editors/josm/plugins/tag2link/build.xml

    r28807 r28994  
    3434    <!-- enter the *lowest* JOSM version this plugin is currently compatible with -->
    3535    <property name="plugin.main.version" value="4968"/>
     36       
     37    <!-- Configure these properties (replace "..." accordingly).
     38         See http://josm.openstreetmap.de/wiki/DevelopersGuide/DevelopingPlugins
     39    -->
     40    <property name="plugin.author" value="Don-vip &amp; FrViPofm"/>
     41    <property name="plugin.class" value="org.openstreetmap.josm.plugins.tag2link.Tag2LinkPlugin"/>
     42    <property name="plugin.description" value="Launch browser to a Web resource about a selected object having known tags, such as Wikipedia"/>
     43    <property name="plugin.icon" value="images/tag2linkv2_24x24.png"/>
     44    <property name="plugin.link" value="http://wiki.openstreetmap.org/wiki/JOSM/Plugins/Tag2Link"/>
     45    <!--<property name="plugin.early" value="..."/>-->
     46    <!--<property name="plugin.requires" value="..."/>-->
     47    <!--<property name="plugin.stage" value="..."/>-->
    3648
    37     <!--
    38     **********************************************************
    39     ** include targets that all plugins have in common
    40     **********************************************************
    41     -->
     49    <!-- ** include targets that all plugins have in common ** -->
    4250    <import file="../build-common.xml"/>
    4351
    44     <!--
    45     **********************************************************
    46     ** dist - creates the plugin jar
    47     **********************************************************
    48     -->
    49     <target name="dist" depends="compile,revision">
    50         <echo message="creating ${ant.project.name}.jar ... "/>
    51         <copy todir="${plugin.build.dir}/resources">
    52             <fileset dir="resources"/>
    53         </copy>
    54         <copy todir="${plugin.build.dir}/images">
    55             <fileset dir="images"/>
    56         </copy>
    57         <copy todir="${plugin.build.dir}/data">
    58             <fileset dir="data"/>
    59         </copy>
    60         <copy todir="${plugin.build.dir}">
    61             <fileset dir=".">
    62                 <include name="README"/>
    63                 <include name="LICENSE-2.0.txt"/>
    64                 <include name="gpl-3.0.txt"/>
    65             </fileset>
    66         </copy>
    67         <jar destfile="${plugin.jar}" basedir="${plugin.build.dir}">
    68             <!--
    69             ************************************************
    70             ** configure these properties. Most of them will be copied to the plugins
    71             ** manifest file. Property values will also show up in the list available
    72             ** plugins: http://josm.openstreetmap.de/wiki/Plugins.
    73             **
    74             ************************************************
    75             -->
    76             <manifest>
    77                 <attribute name="Author" value="Don-vip &amp; FrViPofm"/>
    78                 <attribute name="Plugin-Class" value="org.openstreetmap.josm.plugins.tag2link.Tag2LinkPlugin"/>
    79                 <attribute name="Plugin-Date" value="${version.entry.commit.date}"/>
    80                 <attribute name="Plugin-Description" value="Launch browser to a Web resource about a selected object having known tags, such as Wikipedia"/>
    81                 <attribute name="Plugin-Early" value="false"/>
    82                 <attribute name="Plugin-Icon" value="images/tag2linkv2_24x24.png"/>
    83                 <attribute name="Plugin-Link" value="http://wiki.openstreetmap.org/wiki/JOSM/Plugins/Tag2Link"/>
    84                 <attribute name="Plugin-Mainversion" value="${plugin.main.version}"/>
    85                 <attribute name="Plugin-Version" value="${version.entry.commit.revision}"/>
    86             </manifest>
    87         </jar>
    88     </target>
    8952</project>
Note: See TracChangeset for help on using the changeset viewer.