File: build.xml

package info (click to toggle)
josm-plugins 0.0.svn33112%2Bds-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 1,052 kB
  • ctags: 784
  • sloc: java: 4,572; xml: 1,327; makefile: 55; python: 19
file content (19 lines) | stat: -rw-r--r-- 1,194 bytes parent folder | download | duplicates (2)
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>