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

Last change on this file since 32200 was 32200, checked in by nokutu, 8 years ago

Fixed #12854

File size: 832 bytes
Line 
1<?xml version="1.0" encoding="utf-8"?>
2<project name="Mapillary" default="dist" basedir=".">
3
4 <!-- edit the properties of this plugin in the file `gradle.properties` -->
5 <property file="${basedir}/gradle.properties"/>
6 <!-- had to add the description here instead of grade.properties in order to have in translated -->
7 <property name="plugin.description" value="Allows the user to work with pictures hosted at mapillary.com"/>
8
9 <property name="josm" location="../../core/dist/josm-custom.jar"/>
10 <property name="plugin.dist.dir" value="../../dist"/>
11
12 <!-- ** include targets that all plugins have in common ** -->
13 <import file="../build-common.xml"/>
14
15 <fileset id="plugin.requires.jars" dir="${plugin.dist.dir}">
16 <include name="apache-commons.jar"/>
17 <include name="apache-http.jar"/>
18 </fileset>
19</project>
Note: See TracBrowser for help on using the repository browser.