source: osm/applications/editors/josm/plugins/OSMRecPlugin/build.xml@ 31697

Last change on this file since 31697 was 31615, checked in by donvip, 10 years ago

[josm_plugins] update to JOSM 8863

File size: 1.1 KB
Line 
1<?xml version="1.0" encoding="utf-8"?>
2<project name="OSMRecPlugin" default="dist" basedir=".">
3
4 <!-- enter the *lowest* JOSM version this plugin is currently compatible with -->
5 <property name="plugin.main.version" value="8863"/>
6 <property name="plugin.version" value="2.0"/>
7
8 <!-- Configure these properties (replace "..." accordingly).
9 See http://josm.openstreetmap.de/wiki/DevelopersGuide/DevelopingPlugins
10 -->
11 <property name="plugin.author" value="Nikos Karagiannakis - Athena RC"/>
12 <property name="plugin.class" value="org.openstreetmap.josm.plugins.osmrec.OSMRecPlugin"/>
13 <property name="plugin.description" value="Recommends categories/tags on newly created OSM entities by analysing spatial entities into training features and using SVM classification"/>
14 <property name="plugin.icon" value="images/dialogs/logo-osmrec.png"/>
15 <property name="plugin.link" value="http://wiki.openstreetmap.org/wiki/JOSM/Plugins/OSMRec"/>
16
17 <!-- ** include targets that all plugins have in common ** -->
18 <import file="../build-common.xml"/>
19</project>
Note: See TracBrowser for help on using the repository browser.