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

Last change on this file since 33492 was 33241, checked in by donvip, 7 years ago

fix #josm14653 - Overpass Download - PBF format

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