Last change
on this file since 31071 was 31010, checked in by donvip, 10 years ago |
[josm_pbf] enable load at runtime
|
-
Property svn:mime-type
set to
text/xml
|
File size:
1.4 KB
|
Rev | Line | |
---|
[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 -->
|
---|
[30664] | 5 | <property name="plugin.main.version" value="7575"/>
|
---|
[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"/>
|
---|
[28997] | 12 | <property name="plugin.link" value="http://wiki.openstreetmap.org/wiki/JOSM/Plugins/PBF"/>
|
---|
| 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.