| 1 | <?xml version="1.0" encoding="utf-8"?>
|
|---|
| 2 | <!--
|
|---|
| 3 | ** This is a template build file for a JOSM plugin.
|
|---|
| 4 | **
|
|---|
| 5 | ** Maintaining versions
|
|---|
| 6 | ** ====================
|
|---|
| 7 | ** See README.template
|
|---|
| 8 | **
|
|---|
| 9 | ** Usage
|
|---|
| 10 | ** =====
|
|---|
| 11 | ** Call "ant help" to get possible build targets.
|
|---|
| 12 | **
|
|---|
| 13 | -->
|
|---|
| 14 | <project name="ImageryCache" default="dist" basedir=".">
|
|---|
| 15 |
|
|---|
| 16 | <!-- enter the SVN commit message -->
|
|---|
| 17 | <property name="commit.message" value="[JOSM_ImageryCache]: correct database cleaning, at last"/>
|
|---|
| 18 | <!-- enter the *lowest* JOSM version this plugin is currently compatible with -->
|
|---|
| 19 | <property name="plugin.main.version" value="5779"/>
|
|---|
| 20 |
|
|---|
| 21 | <!-- Configure these properties (replace "..." accordingly).
|
|---|
| 22 | See http://josm.openstreetmap.de/wiki/DevelopersGuide/DevelopingPlugins
|
|---|
| 23 | -->
|
|---|
| 24 | <property name="plugin.author" value="Alexei Kasatkin"/>
|
|---|
| 25 | <property name="plugin.class" value="org.openstreetmap.josm.plugins.imagerycache.ImageryCachePlugin"/>
|
|---|
| 26 | <property name="plugin.description" value="This experimental plugin allows JOSM to store tile cache in database files, not in huge cache directories"/>
|
|---|
| 27 | <property name="plugin.icon" value="images/session.png"/>
|
|---|
| 28 | <!-- <property name="plugin.link" value="http://wiki.openstreetmap.org/wiki/JOSM/Plugins/ImageryCache"/> -->
|
|---|
| 29 | <!--<property name="plugin.early" value="..."/>-->
|
|---|
| 30 | <!--<property name="plugin.requires" value="..."/>-->
|
|---|
| 31 | <!--<property name="plugin.stage" value="..."/>-->
|
|---|
| 32 |
|
|---|
| 33 | <!-- ** include targets that all plugins have in common ** -->
|
|---|
| 34 | <import file="../build-common.xml"/>
|
|---|
| 35 | <target name="runmain" depends="install">
|
|---|
| 36 | <java classname="${plugin.class}" classpath="${plugin.jar};${josm}" fork="true">
|
|---|
| 37 | </java>
|
|---|
| 38 | </target>
|
|---|
| 39 | </project>
|
|---|