source: osm/applications/editors/josm/plugins/ImportImagePlugin/build.xml@ 29531

Last change on this file since 29531 was 29435, checked in by stoecker, 11 years ago

i18n update

  • Property svn:mime-type set to text/xml
File size: 2.0 KB
Line 
1<?xml version="1.0" encoding="UTF-8"?>
2<project name="ImportImagePlugin" default="dist" basedir=".">
3
4 <!-- enter the SVN commit message -->
5 <property name="commit.message" value="use consistent plugin name (don't mix up the words)" />
6 <!-- enter the *lowest* JOSM version this plugin is currently compatible with -->
7 <property name="plugin.main.version" value="4549" />
8
9 <property name="plugin.author" value="Christoph Beekmans, Fabian Kowitz, Anna Robaszkiewicz, Oliver Kuhn, Martin Ulitzny"/>
10 <property name="plugin.class" value="org.openstreetmap.josm.plugins.ImportImagePlugin.ImportImagePlugin"/>
11 <property name="plugin.description" value="Plugin for importing spatial referenced images"/>
12 <property name="plugin.icon" value="images/layericon.png"/>
13 <property name="plugin.link" value="http://wiki.openstreetmap.org/wiki/JOSM/Plugins/ImportImagePlugin"/>
14 <property name="plugin.requires" value="log4j;jts;geotools"/>
15
16 <!-- ** include targets that all plugins have in common ** -->
17 <import file="../build-common.xml"/>
18
19 <!--
20 **********************************************************
21 ** compile - complies the source tree
22 **********************************************************
23 -->
24 <target name="compile" depends="init">
25 <echo message="compiling sources for ${plugin.jar} ... "/>
26 <javac srcdir="src" classpath="${josm}" debug="true" destdir="${plugin.build.dir}" includeantruntime="false">
27 <classpath>
28 <pathelement location="${josm}"/>
29 <fileset dir="../log4j/lib">
30 <include name="**/*.jar"/>
31 </fileset>
32 <fileset dir="../jts/lib">
33 <include name="**/*.jar"/>
34 </fileset>
35 <fileset dir="../geotools/lib">
36 <include name="**/*.jar"/>
37 </fileset>
38 </classpath>
39 <compilerarg value="-Xlint:deprecation"/>
40 <compilerarg value="-Xlint:unchecked"/>
41 </javac>
42 </target>
43
44</project>
Note: See TracBrowser for help on using the repository browser.