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 (24 lines) | stat: -rw-r--r-- 1,259 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
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>