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

Last change on this file since 34775 was 34295, checked in by donvip, 7 years ago

update to JOSM 13927

  • Property svn:mime-type set to text/xml
File size: 1.8 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 -->
[34295]5 <property name="plugin.main.version" value="13927"/>
[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">
[34009]25 <!-- get rid of "internal proprietary API" warning -->
26 <compilerarg value="-XDignore.symbol.file"/>
27 <src path="src" />
28 <src path="gen" />
29 <exclude name="org/**"/>
30 </javac>
31 <javac classpath="${josm}" debug="true" destdir="${plugin.build.dir}" includeAntRuntime="false">
[26961]32 <compilerarg value="-Xlint:deprecation"/>
33 <compilerarg value="-Xlint:unchecked"/>
[28807]34 <src path="src" />
[34009]35 <include name="org/**"/>
[26961]36 </javac>
37 </target>
[28807]38</project>
Note: See TracBrowser for help on using the repository browser.