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

Last change on this file since 31461 was 31402, checked in by nkaragiannakis, 10 years ago

bugFix for files extraction

File size: 1.6 KB
Line 
1<?xml version="1.0" encoding="utf-8"?>
2
3<project name="OSMRecPlugin" default="dist" basedir=".">
4
5 <!-- enter the SVN commit message -->
6 <property name="commit.message" value="Commit message"/>
7 <!-- enter the *lowest* JOSM version this plugin is currently compatible with -->
8 <property name="plugin.main.version" value="7001"/>
9 <property name="plugin.version" value="2.0"/>
10
11 <!-- Configure these properties (replace "..." accordingly).
12
13
14
15 See http://josm.openstreetmap.de/wiki/DevelopersGuide/DevelopingPlugins
16 -->
17 <property name="plugin.author" value="Nikos Karagiannakis - Athena RC"/>
18 <property name="plugin.class" value="org.openstreetmap.josm.plugins.osmrec.OSMRecPlugin"/>
19 <property name="plugin.description" value="Recommends categories/tags on newly created OSM entities by analysing spatial entities into training features and using SVM classification"/>
20 <property name="plugin.icon" value="images/dialogs/logo-osmrec.png"/>
21 <property name="plugin.link" value="http://wiki.openstreetmap.org/wiki/JOSM/Plugins/OSMRec"/>
22 <!-- <property name="plugin.link" value="..."/>-->
23 <!--<property name="plugin.early" value="..."/>-->
24 <!--<property name="plugin.requires" value="..."/>-->
25 <!--<property name="plugin.stage" value="..."/>-->
26
27
28 <!-- temporary out
29 <property name="josm" location="../../core/dist/josm-custom.jar"/>
30 <property name="plugin.dist.dir" value="../../dist"/>
31 -->
32
33 <!-- ** include targets that all plugins have in common ** -->
34 <!-- <import file="build-common.xml"/>-->
35 <import file="../build-common.xml"/>
36
37
38</project>
Note: See TracBrowser for help on using the repository browser.