<?xml version="1.0" encoding="utf-8"?>
<project name="ImageryCache" default="dist" basedir=".">

    <!-- enter the SVN commit message -->
    <property name="commit.message" value="[JOSM_ImageryCache]: correct database cleaning, at last"/>
    <!-- enter the *lowest* JOSM version this plugin is currently compatible with -->
    <property name="plugin.main.version" value="8186"/>

    <!-- Configure these properties (replace "..." accordingly).
         See http://josm.openstreetmap.de/wiki/DevelopersGuide/DevelopingPlugins
    -->
    <property name="plugin.author" value="Alexei Kasatkin"/>
    <property name="plugin.class" value="org.openstreetmap.josm.plugins.imagerycache.ImageryCachePlugin"/>
    <property name="plugin.description" value="This experimental plugin allows JOSM to store tile cache in database files, not in huge cache directories"/>
    <property name="plugin.icon" value="images/session.png"/> 
<!--    <property name="plugin.link" value="http://wiki.openstreetmap.org/wiki/JOSM/Plugins/ImageryCache"/> -->
    <!--<property name="plugin.early" value="..."/>-->
    <!--<property name="plugin.requires" value="..."/>-->
    <!--<property name="plugin.stage" value="..."/>-->

    <!-- ** include targets that all plugins have in common ** -->
    <import file="../build-common.xml"/>
    <target name="runmain" depends="install">
        <java classname="${plugin.class}" classpath="${plugin.jar};${josm}" fork="true">
        </java>
    </target>
</project>
