Ignore:
Timestamp:
2019-06-23T04:58:53+02:00 (5 years ago)
Author:
donvip
Message:

see #josm17835 - fix plugin build files

File:
1 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/roadsigns/build.xml

    r34553 r35039  
    55    <!-- enter the *lowest* JOSM version this plugin is currently compatible with -->
    66    <property name="plugin.main.version" value="14153"/>
     7
     8    <property name="plugin.author" value="Paul Hartmann"/>
     9    <property name="plugin.class" value="org.openstreetmap.josm.plugins.roadsigns.RoadSignsPlugin"/>
     10    <property name="plugin.description" value="Plugin for tagging of objects based on a selection of road signs. The dialog can be opened by clicking a small icon in the upper right corner of the properties window. Available country presets: Belgium, Germany, Poland, Slovakia, Spain."/>
     11    <property name="plugin.icon" value="images/pref/roadsigns.png"/>
     12    <property name="plugin.link" value="https://wiki.openstreetmap.org/wiki/JOSM/Plugins/RoadSigns"/>
     13    <property name="plugin.canloadatruntime" value="true"/>
    714
    815    <!--
     
    1320    <import file="../build-common.xml"/>
    1421
    15     <!--
    16     **********************************************************
    17     ** dist - creates the plugin jar
    18     **********************************************************
    19     -->
    20     <target name="dist" depends="compile,revision">
    21         <echo message="creating ${ant.project.name}.jar ... "/>
    22         <copy todir="${plugin.build.dir}/images">
    23             <fileset dir="images"/>
    24         </copy>
    25         <copy todir="${plugin.build.dir}/data">
    26             <fileset dir="data"/>
    27         </copy>
    28         <copy todir="${plugin.build.dir}">
    29             <fileset dir=".">
    30                 <include name="README"/>
    31                 <include name="LICENSE"/>
    32             </fileset>
    33         </copy>
    34         <jar destfile="${plugin.jar}" basedir="${plugin.build.dir}" manifestencoding="UTF-8">
    35             <!--
    36             ************************************************
    37             ** configure these properties. Most of them will be copied to the plugins
    38             ** manifest file. Property values will also show up in the list available
    39             ** plugins: https://josm.openstreetmap.de/wiki/Plugins.
    40             **
    41             ************************************************
    42             -->
    43             <manifest>
    44                 <attribute name="Author" value="Paul Hartmann"/>
    45                 <attribute name="Plugin-Class" value="org.openstreetmap.josm.plugins.roadsigns.RoadSignsPlugin"/>
    46                 <attribute name="Plugin-Date" value="${version.entry.commit.date}"/>
    47                 <attribute name="Plugin-Description" value="Plugin for tagging of objects based on a selection of road signs. The dialog can be opened by clicking a small icon in the upper right corner of the properties window. Available country presets: Belgium, Germany, Poland, Slovakia, Spain."/>
    48                 <attribute name="Plugin-Icon" value="images/pref/roadsigns.png"/>
    49                 <attribute name="Plugin-Link" value="https://wiki.openstreetmap.org/wiki/JOSM/Plugins/RoadSigns"/>
    50                 <attribute name="Plugin-Mainversion" value="${plugin.main.version}"/>
    51                 <attribute name="Plugin-Version" value="${version.entry.commit.revision}"/>
    52                 <attribute name="Plugin-Canloadatruntime" value="true"/>
    53             </manifest>
    54         </jar>
    55     </target>
    5622</project>
Note: See TracChangeset for help on using the changeset viewer.