1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
|
<?xml version="1.0" encoding="utf-8"?>
<project name="measurement" default="dist" basedir=".">
<!-- enter the SVN commit message -->
<property name="commit.message" value="recompile dure to core change"/>
<!-- enter the *lowest* JOSM version this plugin is currently compatible with -->
<property name="plugin.main.version" value="10580"/>
<property name="plugin.canloadatruntime" value="true"/>
<!-- Configure these properties (replace "..." accordingly).
See https://josm.openstreetmap.de/wiki/DevelopersGuide/DevelopingPlugins
-->
<property name="plugin.author" value="Raphael Mack, Reza Mohammadi"/>
<property name="plugin.class" value="org.openstreetmap.josm.plugins.measurement.MeasurementPlugin"/>
<property name="plugin.description" value="Provide a measurement dialog and a layer to measure length and angle of segments, area surrounded by a (simple) closed way and create measurement paths (which also can be imported from a gps layer)."/>
<property name="plugin.icon" value="images/dialogs/measure.png"/>
<!-- ** include targets that all plugins have in common ** -->
<import file="../build-common.xml"/>
</project>
|