source: osm/applications/editors/josm/plugins/photo_geotagging/build.xml@ 34542

Last change on this file since 34542 was 34542, checked in by donvip, 6 years ago

update to JOSM 14153

  • Property svn:mime-type set to text/xml
File size: 1.2 KB
Line 
1<?xml version="1.0" encoding="utf-8"?>
2<project name="photo_geotagging" default="dist" basedir=".">
3
4 <!-- enter the SVN commit message -->
5 <property name="commit.message" value=""/>
6 <!-- enter the *lowest* JOSM version this plugin is currently compatible with -->
7 <property name="plugin.main.version" value="14153"/>
8
9 <property name="plugin.author" value="Paul Hartmann"/>
10 <property name="plugin.class" value="org.openstreetmap.josm.plugins.photo_geotagging.GeotaggingPlugin"/>
11 <property name="plugin.description" value="Write gps position info to the image file header. Run this feature from the right click menu of the image layer."/>
12 <property name="plugin.icon" value="images/geotagging.png"/>
13 <property name="plugin.link" value="https://wiki.openstreetmap.org/wiki/JOSM/Plugins/Photo_Geotagging"/>
14 <property name="plugin.canloadatruntime" value="true"/>
15 <property name="plugin.requires" value="apache-commons"/>
16
17 <!-- ** include targets that all plugins have in common ** -->
18 <import file="../build-common.xml"/>
19
20 <fileset id="plugin.requires.jars" dir="${plugin.dist.dir}">
21 <include name="apache-commons.jar"/>
22 </fileset>
23
24</project>
Note: See TracBrowser for help on using the repository browser.