Ignore:
Timestamp:
2010-12-01T18:51:48+01:00 (15 years ago)
Author:
upliner
Message:

add imagery plugin: the union of the wmsplugin and the slippymap plugin

Location:
applications/editors/josm/plugins/imagery
Files:
1 edited
1 copied

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/imagery

    • Property svn:ignore set to
      bin
      build
      dist
  • applications/editors/josm/plugins/imagery/build.xml

    r23263 r24501  
    2828**
    2929-->
    30 <project name="myPluginName" default="dist" basedir=".">
     30<project name="imagery" default="dist" basedir=".">
    3131
    3232    <!-- enter the SVN commit message -->
    3333    <property name="commit.message" value="Commit message" />
    3434    <!-- enter the *lowest* JOSM version this plugin is currently compatible with -->
    35     <property name="plugin.main.version" value="" />
     35    <property name="plugin.main.version" value="3687" />
    3636
    3737
     
    4141     -->
    4242    <property name="josm"                   location="../../core/dist/josm-custom.jar"/>
     43    <property name="remotecontrol" location="../../dist/remotecontrol.jar" />
    4344    <property name="plugin.build.dir"       value="build"/>
    4445    <property name="plugin.src.dir"         value="src"/>
     
    6566    <target name="compile" depends="init">
    6667        <echo message="compiling sources for  ${plugin.jar} ... "/>
    67         <javac srcdir="src" classpath="${josm}" debug="true" destdir="${plugin.build.dir}">
     68        <javac srcdir="src" classpath="${josm};${remotecontrol}" debug="true" destdir="${plugin.build.dir}">
    6869            <compilerarg value="-Xlint:deprecation"/>
    6970            <compilerarg value="-Xlint:unchecked"/>
     
    100101    -->
    101102            <manifest>
    102                 <attribute name="Author" value="..."/>
    103                 <attribute name="Plugin-Class" value="..."/>
     103                <attribute name="Author" value="Tim Waters, Petr Dlouhý, Frederik Ramm, Upliner and others"/>
     104                <attribute name="Plugin-Class" value="org.openstreetmap.josm.plugins.imagery.ImageryPlugin"/>
    104105                <attribute name="Plugin-Date" value="${version.entry.commit.date}"/>
    105                 <attribute name="Plugin-Description" value="..."/>
    106                 <attribute name="Plugin-Icon" value="..."/>
    107                 <attribute name="Plugin-Link" value="..."/>
     106                <attribute name="Plugin-Description" value="Experimental union of SlippyMap plugin and WMSPlugin"/>
     107                <attribute name="Plugin-Icon" value="images/wms.png"/>
     108                <attribute name="Plugin-Link" value="http://wiki.openstreetmap.org/wiki/JOSM/Plugins/WMSPlugin" />
    108109                <attribute name="Plugin-Mainversion" value="${plugin.main.version}"/>
    109110                <attribute name="Plugin-Version" value="${version.entry.commit.revision}"/>
Note: See TracChangeset for help on using the changeset viewer.