source: osm/applications/editors/josm/plugins/geochat/build.xml@ 29571

Last change on this file since 29571 was 29571, checked in by zverik, 11 years ago

[josm_geochat] autocomplete works, notification was redone slightly

  • Property svn:mime-type set to application/xml
File size: 1.6 KB
Line 
1<?xml version="1.0" encoding="utf-8"?>
2<!--
3** This is a template build file for a JOSM plugin.
4**
5** Maintaining versions
6** ====================
7** See README.template
8**
9** Usage
10** =====
11** Call "ant help" to get possible build targets.
12**
13-->
14<project name="geochat" default="dist" basedir=".">
15
16 <!-- enter the SVN commit message -->
17 <property name="commit.message" value="GeoChat"/>
18 <!-- enter the *lowest* JOSM version this plugin is currently compatible with -->
19 <property name="plugin.main.version" value="4666"/>
20
21 <property name="plugin.author" value="Ilya Zverev"/>
22 <property name="plugin.class" value="geochat.GeoChatPlugin"/>
23 <property name="plugin.description" value="Talk with users editing the map nearby, be notified when someone comes close."/>
24 <property name="plugin.icon" value="images/dialogs/geochat.png"/>
25 <property name="plugin.link" value="http://wiki.openstreetmap.org/wiki/JOSM/Plugins/GeoChat"/>
26
27 <target name="additional-manifest">
28 <manifest file="MANIFEST" mode="update">
29 <attribute name="ru_Author" value="Илья Зверев"/>
30 <attribute name="ru_Plugin-Description" value="Панель для общения с редактирующими карту поблизости, а также способ узнать, когда кто-то собирается править окрестности."/>
31 <attribute name="ru_Plugin_Link" value="http://wiki.openstreetmap.org/wiki/RU:JOSM/Plugins/GeoChat"/>
32 </manifest>
33 </target>
34
35 <!-- ** include targets that all plugins have in common ** -->
36 <import file="../build-common.xml"/>
37
38</project>
Note: See TracBrowser for help on using the repository browser.