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

Last change on this file since 32544 was 32544, checked in by donvip, 8 years ago

checkstyle

  • Property svn:mime-type set to application/xml
File size: 1.6 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="10420"/>
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="https://wiki.openstreetmap.org/wiki/JOSM/Plugins/GeoChat"/>
14 <property name="plugin.canloadatruntime" value="true"/>
15
16 <target name="additional-manifest">
17 <manifest file="MANIFEST" mode="update">
18 <attribute name="ru_Author" value="Илья Зверев"/>
19 <attribute name="ru_Plugin-Description" value="Панель для общения с редактирующими карту поблизости, а также способ узнать, когда кто-то собирается править окрестности."/>
20 <attribute name="ru_Plugin_Link" value="https://wiki.openstreetmap.org/wiki/RU:JOSM/Plugins/GeoChat"/>
21 </manifest>
22 </target>
23
24 <!-- ** include targets that all plugins have in common ** -->
25 <import file="../build-common.xml"/>
26
27</project>
Note: See TracBrowser for help on using the repository browser.