-
Notifications
You must be signed in to change notification settings - Fork 3
/
build.xml
29 lines (24 loc) · 1.06 KB
/
build.xml
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
<?xml version="1.0" encoding="utf-8"?>
<project name="areaselector" default="dist" basedir="." xmlns:ivy="antlib:org.apache.ivy.ant">
<!-- Configure these properties (replace "..." accordingly).
See https://josm.openstreetmap.de/wiki/DevelopersGuide/DevelopingPlugins
-->
<!-- edit the properties of this plugin in the file `gradle.properties` -->
<property file="${basedir}/gradle.properties"/>
<!-- ** include targets that all plugins have in common ** -->
<import file="../build-common.xml" />
<fileset id="plugin.requires.jars" dir="${plugin.dist.dir}">
<include name="apache-commons.jar"/>
<include name="austriaaddresshelper.jar"/>
<include name="ejml.jar"/>
<include name="log4j.jar"/>
</fileset>
<target name="pre-compile" depends="fetch_dependencies">
<!-- include fetch_dependencies task -->
</target>
<target name="install-plugin" depends="clean, dist, install">
<echo>Installed areaselector plugin</echo>
</target>
<target name="test-run" depends="install-plugin, runjosm">
</target>
</project>