source: osm/applications/editors/josm/plugins/public_transport_layer/build.xml@ 31766

Last change on this file since 31766 was 31220, checked in by simon04, 9 years ago

JOSM: add public_transport_layer plugin

Displays stops of selected public transport routes as graph.
See https://josm.openstreetmap.de/wiki/Help/Plugin/PublicTransportLayer

File size: 1.2 KB
Line 
1<?xml version="1.0" encoding="utf-8"?>
2<!--
3** Usage
4** =====
5** Call "ant help" to get possible build targets.
6-->
7<project name="public_transport_layer" default="dist" basedir=".">
8
9 <!-- enter the *lowest* JOSM version this plugin is currently compatible with -->
10 <property name="plugin.main.version" value="8339"/>
11
12 <!-- Configure these properties (replace "..." accordingly).
13 See http://josm.openstreetmap.de/wiki/DevelopersGuide/DevelopingPlugins
14 -->
15 <property name="plugin.author" value="simon04"/>
16 <property name="plugin.class" value="ptl.Plugin"/>
17 <property name="plugin.description" value="Displays stops of selected public transport routes as graph"/>
18 <!--<property name="plugin.icon" value="..."/>-->
19 <property name="plugin.link" value="https://josm.openstreetmap.de/wiki/Help/Plugin/PublicTransportLayer"/>
20 <property name="plugin.canloadatruntime" value="true"/>
21 <!--<property name="plugin.early" value="..."/>-->
22 <!--<property name="plugin.requires" value="..."/>-->
23 <!--<property name="plugin.stage" value="..."/>-->
24
25 <!-- ** include targets that all plugins have in common ** -->
26 <import file="../build-common.xml"/>
27
28</project>
Note: See TracBrowser for help on using the repository browser.