source: osm/applications/editors/josm/plugins/pbf/build.xml@ 30690

Last change on this file since 30690 was 30690, checked in by donvip, 10 years ago

[josm_pbf] see #josm9704 - update description

  • Property svn:mime-type set to text/xml
File size: 1.3 KB
Line 
1<?xml version="1.0" encoding="utf-8"?>
2<project name="pbf" default="dist" basedir=".">
3
4 <!-- enter the *lowest* JOSM version this plugin is currently compatible with -->
5 <property name="plugin.main.version" value="7575"/>
6
7 <property name="plugin.author" value="Don-vip"/>
8 <property name="plugin.class" value="org.openstreetmap.josm.plugins.pbf.PbfPlugin"/>
9 <property name="plugin.description" value="Import/export OSM data in PBF format"/>
10 <!--<property name="plugin.icon" value="images/pbf_24.png"/>-->
11 <property name="plugin.link" value="http://wiki.openstreetmap.org/wiki/JOSM/Plugins/PBF"/>
12
13 <!-- ** include targets that all plugins have in common ** -->
14 <import file="../build-common.xml"/>
15
16 <!--
17 **********************************************************
18 ** compile - complies the source tree
19 **********************************************************
20 -->
21 <target name="compile" depends="init">
22 <echo message="compiling sources for ${plugin.jar} ... "/>
23 <javac classpath="${josm}" debug="true" destdir="${plugin.build.dir}" includeAntRuntime="false">
24 <compilerarg value="-Xlint:deprecation"/>
25 <compilerarg value="-Xlint:unchecked"/>
26 <src path="src" />
27 <src path="gen" />
28 </javac>
29 </target>
30</project>
Note: See TracBrowser for help on using the repository browser.