source: osm/applications/editors/josm/plugins/roadsigns/build.xml@ 36358

Last change on this file since 36358 was 36316, checked in by taylor.smock, 4 months ago

Fix #23586: Add Austria signs in RoadSigns (patch by Luzandro, modified)

Modifications are as follows:

  • Update minimum JOSM version to r19044 since we now build with Java 11.
  • Lint cleanup of RoadSignsPlugin.java
  • Property svn:mime-type set to text/xml
File size: 1.3 KB
Line 
1<?xml version="1.0" encoding="utf-8"?>
2<project name="RoadSigns" default="dist" basedir=".">
3 <!-- enter the SVN commit message -->
4 <property name="commit.message" value=""/>
5 <!-- enter the *lowest* JOSM version this plugin is currently compatible with -->
6 <property name="plugin.main.version" value="19044"/>
7
8 <property name="plugin.author" value="Paul Hartmann"/>
9 <property name="plugin.class" value="org.openstreetmap.josm.plugins.roadsigns.RoadSignsPlugin"/>
10 <property name="plugin.description" value="Plugin for tagging of objects based on a selection of road signs. The dialog can be opened by clicking a small icon in the upper right corner of the properties window. Available country presets: Austria, Belgium, Czech Republic, Germany, Poland, Slovakia, Spain."/>
11 <property name="plugin.icon" value="images/pref/roadsigns.png"/>
12 <property name="plugin.link" value="https://wiki.openstreetmap.org/wiki/JOSM/Plugins/RoadSigns"/>
13 <property name="plugin.canloadatruntime" value="true"/>
14
15 <!--
16 **********************************************************
17 ** include targets that all plugins have in common
18 **********************************************************
19 -->
20 <import file="../build-common.xml"/>
21
22</project>
Note: See TracBrowser for help on using the repository browser.