source: osm/applications/editors/josm/plugins/o5m/build.xml.bak@ 32834

Last change on this file since 32834 was 32833, checked in by gerdp, 8 years ago

add o5m plugin which allows inporting OSM files in o5m format

File size: 2.0 KB
Line 
1<?xml version="1.0" encoding="utf-8"?>
2<!--
3** This is a template build file for a JOSM plugin.
4**
5** Maintaining versions
6** ====================
7** See README.template
8**
9** Usage
10** =====
11** Call "ant help" to get possible build targets.
12**
13-->
14<project name="o5m" default="dist" basedir=".">
15
16 <!-- enter the SVN commit message -->
17 <property name="commit.message" value="Commit message"/>
18 <!-- enter the *lowest* JOSM version this plugin is currently compatible with -->
19 <property name="plugin.main.version" value="10580"/>
20
21
22 <!-- Configure these properties (replace "..." accordingly).
23 See https://josm.openstreetmap.de/wiki/DevelopersGuide/DevelopingPlugins
24 <property name="plugin.canloadatruntime" value="true"/>
25 -->
26 <property name="plugin.author" value="Gerd Petermann"/>
27 <property name="plugin.class" value="org.openstreetmap.josm.plugins.o5m.O5mPlugin"/>
28 <property name="plugin.description" value="Import OSM data in o5m format"/>
29 <!--<property name="plugin.icon" value="..."/>-->
30 <property name="plugin.link" value="http://wiki.openstreetmap.org/wiki/JOSM/Plugins/o5m"/>
31 <!--<property name="plugin.early" value="..."/>-->
32 <!--<property name="plugin.requires" value="..."/>-->
33 <!--<property name="plugin.stage" value="..."/>-->
34
35 <!-- ** include targets that all plugins have in common ** -->
36 <import file="../build-common.xml"/>
37 <!--
38 **********************************************************
39 ** compile - complies the source tree
40 **********************************************************
41 -->
42 <target name="compile" depends="init">
43 <echo message="compiling sources for ${plugin.jar} ... "/>
44 <javac classpath="${josm}" debug="true" destdir="${plugin.build.dir}" includeAntRuntime="false">
45 <compilerarg value="-Xlint:deprecation"/>
46 <compilerarg value="-Xlint:unchecked"/>
47 <src path="src" />
48 </javac>
49 </target>
50
51</project>
Note: See TracBrowser for help on using the repository browser.