source: osm/applications/editors/josm/plugins/imagery_cachexport/build.xml@ 35437

Last change on this file since 35437 was 35437, checked in by simon04, 4 years ago

see #josm19208 - JCS: update package to org.apache.commons.jcs3

  • Property svn:mime-type set to text/xml
File size: 2.2 KB
Line 
1<?xml version="1.0" encoding="utf-8"?>
2<project name="imagery_cachexport" default="dist" basedir=".">
3
4 <!-- enter the SVN commit message -->
5 <property name="commit.message" value="Commit message"/>
6 <!-- enter the *lowest* JOSM version this plugin is currently compatible with -->
7 <property name="plugin.main.version" value="16398"/>
8
9 <!-- Configure these properties (replace "..." accordingly).
10 See https://josm.openstreetmap.de/wiki/DevelopersGuide/DevelopingPlugins
11 -->
12 <property name="plugin.author" value="holgermappt"/>
13 <property name="plugin.class" value="org.openstreetmap.josm.plugins.imagery_cachexport.ImageryCacheExportPlugin"/>
14 <property name="plugin.description" value="Export tiles from the imagery layer cache into the file system."/>
15 <property name="plugin.icon" value="images/imageryexport.png"/>
16 <!--property name="plugin.link" value="https://wiki.openstreetmap.org/wiki/JOSM/Plugins/ImageryCacheExport"/>-->
17 <!--<property name="plugin.early" value="..."/>-->
18 <!--<property name="plugin.requires" value="..."/>-->
19 <!--<property name="plugin.stage" value="..."/>-->
20 <property name="plugin.canloadatruntime" value="true"/>
21
22 <property name="josm" location="../../core/dist/josm-custom.jar"/>
23 <property name="plugin.javadoc.dir" location="javadoc"/>
24
25 <!-- ** include targets that all plugins have in common ** -->
26 <import file="../build-common.xml"/>
27
28 <!-- ** internationalization ** -->
29 <import file="i18n/build-i18n.xml"/>
30
31 <target name="pot" description="Extract translatable strings from source." depends="gettext-init">
32 <mkdir dir="${plugin.po.dir}"/>
33 <gettext-extract keysFile="${ant.project.name}.pot" poDirectory="${plugin.po.dir}" keywords="-k -ktrc:1c,2 -kmarktrc:1c,2 -ktr -kmarktr -ktrn:1,2 -ktrnc:1c,2,3">
34 <fileset dir="${plugin.src.dir}" includes="**/*.java"/>
35 </gettext-extract>
36 <echo file="${plugin.po.dir}/${ant.project.name}.pot" append="true">
37#. Plugin ${ant.project.name}
38#: build.xml:1
39msgid "${plugin.description}"
40msgstr ""
41</echo>
42 </target>
43
44 <target name="additional-manifest">
45 <antcall target="mftrans"/>
46 </target>
47</project>
Note: See TracBrowser for help on using the repository browser.