source: osm/applications/editors/josm/plugins/imagery_offset_db/build.xml@ 33547

Last change on this file since 33547 was 33547, checked in by zverik, 7 years ago

Upgrade API in imagery_offset_db

  • Property svn:mime-type set to text/xml
File size: 1.4 KB
Line 
1<?xml version="1.0" encoding="utf-8"?>
2<project name="imagery_offset_db" default="dist" basedir=".">
3
4 <!-- enter the SVN commit message -->
5 <property name="commit.message" value="Imagery Offset Database"/>
6 <!-- enter the *lowest* JOSM version this plugin is currently compatible with -->
7 <property name="plugin.main.version" value="12643"/>
8 <property name="plugin.canloadatruntime" value="true"/>
9
10 <property name="plugin.author" value="Ilya Zverev"/>
11 <property name="plugin.class" value="iodb.ImageryOffsetPlugin"/>
12 <property name="plugin.description" value="Database of imagery offsets: share and aquire imagery offsets with one button."/>
13 <property name="plugin.icon" value="images/iodb.png"/>
14 <property name="plugin.link" value="https://wiki.openstreetmap.org/wiki/Imagery_Offset_Database"/>
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:Imagery_Offset_Database"/>
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.