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

Last change on this file since 31207 was 31207, checked in by nokutu, 9 years ago

Changed minimum version

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="8433"/>
18 <property name="plugin.version" value="0.8.2"/>
19 <property name="plugin.author" value="nokutu &lt;nokutu@openmailbox.org&gt;"/>
20 <property name="plugin.class" value="org.openstreetmap.josm.plugins.mapillary.MapillaryPlugin"/>
21 <property name="plugin.description" value="Enables user to work with pictures hosted at mapillary.com"/>
22 <property name="plugin.icon" value="images/icon24.png"/>
23 <!-- <property name="plugin.link" value="..."/>-->
24 <!--<property name="plugin.early" value="..."/>-->
25 <property name="plugin.requires" value="commons-imaging"/>
26 <!--<property name="plugin.stage" value="..."/>-->
27
28 <property name="josm" location="../../core/dist/josm-custom.jar"/>
29 <property name="plugin.dist.dir" value="../../dist"/>
30
31 <!-- ** include targets that all plugins have in common ** -->
32
33 <import file="../build-common.xml"/>
34
35 <fileset id="plugin.requires.jars" dir="${plugin.dist.dir}">
36 <include name="commons-imaging.jar"/>
37 </fileset>
38</project>
Note: See TracBrowser for help on using the repository browser.