source: osm/applications/editors/josm/plugins/cadastre-fr/build.xml@ 33773

Last change on this file since 33773 was 33675, checked in by donvip, 7 years ago

Add GUI classes to download data from (future) Cadastre API

  • Property svn:mime-type set to text/xml
File size: 2.3 KB
Line 
1<?xml version="1.0" encoding="utf-8"?>
2<project name="cadastre-fr" default="dist" basedir=".">
3 <!-- enter the SVN commit message -->
4 <property name="commit.message" value="Changed constructor for Plugin"/>
5 <!-- enter the *lowest* JOSM version this plugin is currently compatible with -->
6 <property name="plugin.main.version" value="12900"/>
7
8 <!-- Configure these properties (replace "..." accordingly).
9 See https://josm.openstreetmap.de/wiki/DevelopersGuide/DevelopingPlugins
10 -->
11 <property name="plugin.author" value="Pieren;Don-vip"/>
12 <property name="plugin.class" value="org.openstreetmap.josm.plugins.fr.cadastre.CadastrePlugin"/>
13 <property name="plugin.description" value="A special handler for the French land registry WMS server."/>
14 <property name="plugin.icon" value="images/preferences/cadastrewms.png"/>
15 <property name="plugin.link" value="https://wiki.openstreetmap.org/wiki/FR:JOSM/Fr:Plugin/Cadastre"/>
16 <property name="plugin.stage" value="60"/>
17 <property name="plugin.requires" value="apache-commons;ejml;jts;geotools"/>
18
19 <!-- ** include targets that all plugins have in common ** -->
20 <import file="../build-common.xml"/>
21
22 <property name="jts" location="${plugin.dist.dir}/jts.jar"/>
23 <property name="geotools" location="${plugin.dist.dir}/geotools.jar"/>
24 <property name="apache-commons" location="${plugin.dist.dir}/apache-commons.jar"/>
25
26 <!--
27 **********************************************************
28 ** compile - compiles the source tree
29 **********************************************************
30 -->
31 <target name="compile" depends="init">
32 <echo message="compiling sources for ${plugin.jar} ... "/>
33 <javac srcdir="src" debug="true" destdir="${plugin.build.dir}" includeAntRuntime="false" encoding="UTF-8">
34 <classpath>
35 <pathelement path="${plugin.build.dir}"/>
36 <pathelement location="${josm}"/>
37 <pathelement location="${jts}"/>
38 <pathelement location="${geotools}"/>
39 <pathelement location="${apache-commons}"/>
40 </classpath>
41 <compilerarg value="-Xlint:deprecation"/>
42 <compilerarg value="-Xlint:unchecked"/>
43 </javac>
44 </target>
45</project>
Note: See TracBrowser for help on using the repository browser.