Last change
on this file since 31351 was 31219, checked in by nokutu, 10 years ago |
Fixed some bugs from findbugs and enhanced image direction modification
|
File size:
1.4 KB
|
Line | |
---|
1 | <?xml version="1.0" encoding="utf-8"?>
|
---|
2 | <project name="Mapillary" default="dist" basedir=".">
|
---|
3 |
|
---|
4 | <!-- enter the *lowest* JOSM version this plugin is currently compatible with -->
|
---|
5 | <property name="plugin.main.version" value="8433"/>
|
---|
6 | <property name="plugin.canloadatruntime" value="true"/>
|
---|
7 | <property name="plugin.version" value="0.8.2"/>
|
---|
8 | <property name="plugin.author" value="nokutu <nokutu@openmailbox.org>"/>
|
---|
9 | <property name="plugin.class" value="org.openstreetmap.josm.plugins.mapillary.MapillaryPlugin"/>
|
---|
10 | <property name="plugin.description" value="Enables user to work with pictures hosted at mapillary.com"/>
|
---|
11 | <property name="plugin.icon" value="images/icon24.png"/>
|
---|
12 | <property name="plugin.link" value="https://wiki.openstreetmap.org/wiki/JOSM/Plugins/Mapillary"/>
|
---|
13 | <!--<property name="plugin.early" value="..."/>-->
|
---|
14 | <property name="plugin.requires" value="commons-imaging"/>
|
---|
15 | <!--<property name="plugin.stage" value="..."/>-->
|
---|
16 |
|
---|
17 | <property name="josm" location="../../core/dist/josm-custom.jar"/>
|
---|
18 | <property name="plugin.dist.dir" value="../../dist"/>
|
---|
19 |
|
---|
20 | <!-- ** include targets that all plugins have in common ** -->
|
---|
21 |
|
---|
22 | <import file="../build-common.xml"/>
|
---|
23 |
|
---|
24 | <fileset id="plugin.requires.jars" dir="${plugin.dist.dir}">
|
---|
25 | <include name="commons-imaging.jar"/>
|
---|
26 | </fileset>
|
---|
27 | </project>
|
---|
Note:
See
TracBrowser
for help on using the repository browser.