source: osm/applications/editors/josm/plugins/routing/build.xml@ 36098

Last change on this file since 36098 was 36085, checked in by taylor.smock, 21 months ago

Fix #22968: ClassCastException in RoutingGraph#applyAlgorithm

The problem pretty much comes down to the active layer not being the routing
layer.

This additionally fixes many SonarLint issues and drops a dependency on log4j.

  • Property svn:mime-type set to text/xml
File size: 1.5 KB
RevLine 
[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 -->
[35978]7 <property name="plugin.main.version" value="18494"/>
[28288]8
[35039]9 <property name="plugin.author" value="Jose Vidal &lt;vidalfree@gmail.com&gt;, Juangui Jordán &lt;juangui@gmail.com&gt;, Hassan S &lt;hassan.sabirin@gmail.com&gt;"/>
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
[28288]15 <!--
16 **********************************************************
17 ** include targets that all plugins have in common
18 **********************************************************
19 -->
20 <import file="../build-common.xml"/>
21
[35039]22 <fileset id="plugin.requires.jars" dir="${plugin.dist.dir}">
23 <include name="log4j.jar"/>
24 </fileset>
[28288]25
[35039]26 <target name="setup-dist">
27 <antcall target="setup-dist-default" />
28 <copy todir="${plugin.build.dir}">
[28288]29 <fileset dir="resources">
30 <include name="*.xml"/>
31 </fileset>
32 </copy>
[26174]33 </target>
[14287]34</project>
Note: See TracBrowser for help on using the repository browser.