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 | <property name="josm" location="../../core/dist/josm-custom.jar"/>
|
---|
28 | <property name="plugin.dist.dir" value="../../dist"/>
|
---|
29 |
|
---|
30 | <!-- ** include targets that all plugins have in common ** -->
|
---|
31 | <!-- <import file="build-common.xml"/>-->
|
---|
32 | <import file="../build-common.xml"/>
|
---|
33 |
|
---|
34 |
|
---|
35 | </project>
|
---|