-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathbuild.xml
More file actions
41 lines (36 loc) · 1.51 KB
/
build.xml
File metadata and controls
41 lines (36 loc) · 1.51 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<?xml version="1.0" encoding="utf-8"?>
<!--
** This is a template build file for a JOSM plugin.
**
** Maintaining versions
** ====================
** See README.template
**
** Usage
** =====
** Call "ant help" to get possible build targets.
**
-->
<project name="apolloopendrive" default="dist" basedir=".">
<!-- enter the SVN commit message -->
<property name="commit.message" value="Commit message"/>
<!-- enter the *lowest* JOSM version this plugin is currently compatible with -->
<property name="plugin.main.version" value="10580"/>
<!-- Configure these properties (replace "..." accordingly).
See https://josm.openstreetmap.de/wiki/DevelopersGuide/DevelopingPlugins
-->
<property name="plugin.author" value="Sebastian Loos"/>
<property name="plugin.class" value="org.openstreetmap.josm.plugins.apolloopendrive.ApolloOpenDrivePlugin"/>
<property name="plugin.description" value="Display and import Apollo OpenDRIVE data into OSM"/>
<property name="plugin.icon" value="..."/>
<property name="plugin.link" value="test"/>
<!--<property name="plugin.early" value="..."/>-->
<property name="plugin.requires" value="jaxb,jts,jackson"/>
<!--<property name="plugin.stage" value="..."/>-->
<fileset id="plugin.requires.jars" dir="${plugin.dist.dir}">
<include name="jaxb.jar"/>
<include name="apolloconverterlib-0.2.jar"/>
</fileset>
<!-- ** include targets that all plugins have in common ** -->
<import file="../build-common.xml"/>
</project>