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

Last change on this file since 30151 was 30131, checked in by donvip, 11 years ago

[josm_plugins] remove org.json from plugins as being included into JOSM core 6484

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