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

Last change on this file since 29835 was 29435, checked in by stoecker, 12 years ago

i18n update

  • Property svn:mime-type set to text/xml
File size: 2.1 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="photo_geotagging" default="dist" basedir=".">
15
16 <!-- enter the SVN commit message -->
17 <property name="commit.message" value="write elevation to EXIF (see josm #7710)"/>
18 <!-- enter the *lowest* JOSM version this plugin is currently compatible with -->
19 <property name="plugin.main.version" value="4762"/>
20
21 <property name="plugin.author" value="Paul Hartmann"/>
22 <property name="plugin.class" value="org.openstreetmap.josm.plugins.photo_geotagging.GeotaggingPlugin"/>
23 <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."/>
24 <property name="plugin.icon" value="images/geotagging.png"/>
25 <property name="plugin.link" value="http://wiki.openstreetmap.org/wiki/JOSM/Plugins/Photo_Geotagging"/>
26
27 <!-- ** include targets that all plugins have in common ** -->
28 <import file="../build-common.xml"/>
29
30 <!--
31 **********************************************************
32 ** compile - complies the source tree
33 ** Overrides the target from build-common.xml
34 **********************************************************
35 -->
36 <target name="compile" depends="init">
37 <echo message="compiling sanselan sources ... "/>
38 <javac srcdir="${plugin.src.dir}" excludes="org/openstreetmap/**" debug="true" destdir="${plugin.build.dir}" encoding="iso-8859-1" includeantruntime="false">
39 <compilerarg value="-Xlint:deprecation"/>
40 </javac>
41 <echo message="compiling sources for ${plugin.jar} ..."/>
42 <javac srcdir="${plugin.src.dir}" excludes="org/apache/sanselan/**" classpath="${josm}" debug="true" destdir="${plugin.build.dir}" includeantruntime="false">
43 <compilerarg value="-Xlint:deprecation"/>
44 <compilerarg value="-Xlint:unchecked"/>
45 </javac>
46 </target>
47
48</project>
Note: See TracBrowser for help on using the repository browser.