1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
|
<?xml version="1.0" encoding="utf-8"?>
<project name="openvisible" default="dist" basedir=".">
<!-- enter the SVN commit message -->
<property name="commit.message" value="Changed the constructor signature of the plugin main class; updated build.xml"/>
<!-- enter the *lowest* JOSM version this plugin is currently compatible with -->
<property name="plugin.main.version" value="10580"/>
<!-- Configure these properties (replace "..." accordingly).
See https://josm.openstreetmap.de/wiki/DevelopersGuide/DevelopingPlugins
-->
<property name="plugin.author" value="Christof Dallermassl"/>
<property name="plugin.class" value="at.dallermassl.josm.plugin.openvisible.OpenVisiblePlugin"/>
<property name="plugin.description" value="Allows opening gpx/osm files that intersect the currently visible screen area"/>
<property name="plugin.icon" value="images/openvisible.png"/>
<!--<property name="plugin.link" value="..."/>-->
<!--<property name="plugin.early" value="..."/>-->
<!--<property name="plugin.requires" value="..."/>-->
<property name="plugin.stage" value="50"/>
<!-- ** include targets that all plugins have in common ** -->
<import file="../build-common.xml"/>
</project>
|