[26413] | 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 -->
|
---|
[29805] | 7 | <property name="plugin.main.version" value="6097" />
|
---|
[26413] | 8 |
|
---|
[29028] | 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"/>
|
---|
[26413] | 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} ... "/>
|
---|
[28954] | 26 | <javac srcdir="src" classpath="${josm}" debug="true" destdir="${plugin.build.dir}" includeantruntime="false">
|
---|
[26413] | 27 | <classpath>
|
---|
| 28 | <pathelement location="${josm}"/>
|
---|
[28965] | 29 | <fileset dir="../log4j/lib">
|
---|
[26413] | 30 | <include name="**/*.jar"/>
|
---|
| 31 | </fileset>
|
---|
[28954] | 32 | <fileset dir="../jts/lib">
|
---|
| 33 | <include name="**/*.jar"/>
|
---|
| 34 | </fileset>
|
---|
| 35 | <fileset dir="../geotools/lib">
|
---|
| 36 | <include name="**/*.jar"/>
|
---|
| 37 | </fileset>
|
---|
[26413] | 38 | </classpath>
|
---|
| 39 | <compilerarg value="-Xlint:deprecation"/>
|
---|
| 40 | <compilerarg value="-Xlint:unchecked"/>
|
---|
| 41 | </javac>
|
---|
| 42 | </target>
|
---|
| 43 |
|
---|
| 44 | </project>
|
---|