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

Last change on this file since 33947 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
RevLine 
[26174]1<?xml version="1.0" encoding="utf-8"?>
[13382]2<project name="cadastre-fr" default="dist" basedir=".">
[29526]3 <!-- enter the SVN commit message -->
[26174]4 <property name="commit.message" value="Changed constructor for Plugin"/>
[29526]5 <!-- enter the *lowest* JOSM version this plugin is currently compatible with -->
[33675]6 <property name="plugin.main.version" value="12900"/>
[29526]7
8 <!-- Configure these properties (replace "..." accordingly).
[31926]9 See https://josm.openstreetmap.de/wiki/DevelopersGuide/DevelopingPlugins
[29526]10 -->
[33639]11 <property name="plugin.author" value="Pieren;Don-vip"/>
[33637]12 <property name="plugin.class" value="org.openstreetmap.josm.plugins.fr.cadastre.CadastrePlugin"/>
[29526]13 <property name="plugin.description" value="A special handler for the French land registry WMS server."/>
[30703]14 <property name="plugin.icon" value="images/preferences/cadastrewms.png"/>
[31923]15 <property name="plugin.link" value="https://wiki.openstreetmap.org/wiki/FR:JOSM/Fr:Plugin/Cadastre"/>
[29526]16 <property name="plugin.stage" value="60"/>
[33671]17 <property name="plugin.requires" value="apache-commons;ejml;jts;geotools"/>
[22547]18
[29526]19 <!-- ** include targets that all plugins have in common ** -->
20 <import file="../build-common.xml"/>
[29734]21
[29917]22 <property name="jts" location="${plugin.dist.dir}/jts.jar"/>
23 <property name="geotools" location="${plugin.dist.dir}/geotools.jar"/>
[33671]24 <property name="apache-commons" location="${plugin.dist.dir}/apache-commons.jar"/>
[29734]25
26 <!--
27 **********************************************************
28 ** compile - compiles the source tree
29 **********************************************************
30 -->
[29855]31 <target name="compile" depends="init">
32 <echo message="compiling sources for ${plugin.jar} ... "/>
[29734]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}"/>
[33671]39 <pathelement location="${apache-commons}"/>
40 </classpath>
[29734]41 <compilerarg value="-Xlint:deprecation"/>
42 <compilerarg value="-Xlint:unchecked"/>
43 </javac>
44 </target>
[13382]45</project>
Note: See TracBrowser for help on using the repository browser.