source: osm/applications/editors/josm/plugins/mapillary/build.xml@ 31179

Last change on this file since 31179 was 31175, checked in by nokutu, 10 years ago

Dialog picture was left and build author modifications

File size: 1.5 KB
Line 
1<?xml version="1.0" encoding="utf-8"?>
2<!--
3** This is a template build file for a JOSM plugin.
4**
5** Maintaining versions
6** ====================
7** See README.template
8**
9** Usage
10** =====
11** Call "ant help" to get possible build targets.
12**
13-->
14<project name="Mapillary" default="dist" basedir=".">
15
16 <!-- enter the *lowest* JOSM version this plugin is currently compatible with -->
17 <property name="plugin.main.version" value="7777"/>
18 <property name="plugin.version" value="0.8"/>
19
20 <!-- Configure these properties (replace "..." accordingly).
21
22
23
24 See http://josm.openstreetmap.de/wiki/DevelopersGuide/DevelopingPlugins
25 -->
26 <property name="plugin.author" value="Nokutu"/>
27 <property name="plugin.class" value="org.openstreetmap.josm.plugins.mapillary.MapillaryPlugin"/>
28 <property name="plugin.description" value="Enables user to work with pictures hosted at mapillary.com"/>
29 <property name="plugin.icon" value="images/icon24.png"/>
30 <!-- <property name="plugin.link" value="..."/>-->
31 <!--<property name="plugin.early" value="..."/>-->
32 <!--<property name="plugin.requires" value="..."/>-->
33 <!--<property name="plugin.stage" value="..."/>-->
34
35 <property name="josm" location="../../core/dist/josm-custom.jar"/>
36 <property name="plugin.dist.dir" value="../../dist"/>
37
38 <!-- ** include targets that all plugins have in common ** -->
39 <import file="../build-common.xml"/>
40
41</project>
Note: See TracBrowser for help on using the repository browser.