Rev | Line | |
---|
[26174] | 1 | <?xml version="1.0" encoding="utf-8"?>
|
---|
[14287] | 2 | <project name="routing" default="dist" basedir=".">
|
---|
[28288] | 3 |
|
---|
| 4 | <!-- enter the SVN commit message -->
|
---|
[27952] | 5 | <property name="commit.message" value="added one-way support in roundabouts"/>
|
---|
[28288] | 6 | <!-- enter the *lowest* JOSM version this plugin is currently compatible with -->
|
---|
[34554] | 7 | <property name="plugin.main.version" value="14153"/>
|
---|
[28288] | 8 |
|
---|
[35039] | 9 | <property name="plugin.author" value="Jose Vidal <vidalfree@gmail.com>, Juangui Jordán <juangui@gmail.com>, Hassan S <hassan.sabirin@gmail.com>"/>
|
---|
| 10 | <property name="plugin.class" value="com.innovant.josm.plugin.routing.RoutingPlugin"/>
|
---|
| 11 | <property name="plugin.description" value="Provides routing capabilities."/>
|
---|
| 12 | <property name="plugin.icon" value="images/preferences/routing.png"/>
|
---|
| 13 | <property name="plugin.link" value="https://wiki.openstreetmap.org/index.php/JOSM/Plugins/Routing"/>
|
---|
| 14 | <property name="plugin.requires" value="log4j"/>
|
---|
| 15 |
|
---|
[28288] | 16 | <!--
|
---|
| 17 | **********************************************************
|
---|
| 18 | ** include targets that all plugins have in common
|
---|
| 19 | **********************************************************
|
---|
| 20 | -->
|
---|
| 21 | <import file="../build-common.xml"/>
|
---|
| 22 |
|
---|
[35039] | 23 | <fileset id="plugin.requires.jars" dir="${plugin.dist.dir}">
|
---|
| 24 | <include name="log4j.jar"/>
|
---|
| 25 | </fileset>
|
---|
[28288] | 26 |
|
---|
[35039] | 27 | <target name="setup-dist">
|
---|
| 28 | <antcall target="setup-dist-default" />
|
---|
| 29 | <copy todir="${plugin.build.dir}">
|
---|
[28288] | 30 | <fileset dir="resources">
|
---|
| 31 | <include name="*.xml"/>
|
---|
| 32 | </fileset>
|
---|
| 33 | </copy>
|
---|
[26174] | 34 | </target>
|
---|
[14287] | 35 | </project>
|
---|
Note:
See
TracBrowser
for help on using the repository browser.