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

Last change on this file since 33728 was 33579, checked in by donvip, 7 years ago

update to JOSM 12678

File size: 1.4 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="12678"/>
6 <property name="plugin.version" value="2.1"/>
7
8 <!-- Configure these properties (replace "..." accordingly).
9 See https://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="https://wiki.openstreetmap.org/wiki/JOSM/Plugins/OSMRec"/>
16 <property name="plugin.requires" value="log4j;apache-commons;jts;geotools"/>
17
18 <!-- ** include targets that all plugins have in common ** -->
19 <import file="../build-common.xml"/>
20
21 <fileset id="plugin.requires.jars" dir="${plugin.dist.dir}">
22 <include name="log4j.jar"/>
23 <include name="apache-commons.jar"/>
24 <include name="jts.jar"/>
25 <include name="geotools.jar"/>
26 </fileset>
27
28</project>
Note: See TracBrowser for help on using the repository browser.