|
1 | 1 | <?xml version="1.0" encoding="utf-8"?> |
2 | | -<project name="indoorhelper" default="dist" basedir="."> |
3 | | - <!-- edit the properties of this plugin in the file `gradle.properties` --> |
4 | | - <property file="${basedir}/gradle.properties"/> |
5 | | - |
6 | | - <property name="josm" location="../../core/dist/josm-custom.jar"/> |
7 | | - <property name="plugin.dist.dir" value="../../dist"/> |
8 | | - |
9 | | - <!-- ** include targets that all plugins have in common ** --> |
10 | | - <import file="../build-common.xml"/> |
11 | | - |
12 | | - <target name="pre-compile" depends="fetch_dependencies"> |
13 | | - <!-- include fetch_dependencies task --> |
14 | | - </target> |
| 2 | +<project name="indoorhelper" default="dist" basedir="."> |
| 3 | + <!-- enter the *lowest* JOSM version this plugin is currently compatible with --> |
| 4 | + <property name="plugin.main.version" value="19044"/> |
| 5 | + <!-- Configure these properties (replace "..." accordingly). |
| 6 | + See https://josm.openstreetmap.de/wiki/DevelopersGuide/DevelopingPlugins |
| 7 | + --> |
| 8 | + <property name="plugin.author" value="Erik Gruschka, Rebecca Schmidt"/> |
| 9 | + <property name="plugin.class" value="org.openstreetmap.josm.plugins.indoorhelper.IndoorHelperPlugin"/> |
| 10 | + <property name="plugin.description" value="Gives assistance for the mapping process of indoor OSM building data. Includes a validator and a mappaint style for indoor-data."/> |
| 11 | + <property name="plugin.icon" value="images/dialogs/indoorhelper.png"/> |
| 12 | + <property name="plugin.link" value="https://wiki.openstreetmap.org/wiki/JOSM/Plugins/indoorhelper"/> |
| 13 | + <property name="plugin.early" value="true"/> |
| 14 | + <!--<property name="plugin.requires" value="..."/>--> |
| 15 | + <property name="plugin.stage" value="50"/> |
| 16 | + <!-- edit the properties of this plugin in the file `gradle.properties` --> |
| 17 | + <property name="de_plugin.description" value="Plug-In zur Hilfe bei der Erstellung von Innenraumdaten. Beinhaltet einen Validator f黵 die erstellten Daten und einen Renderstil um diese 黚ersichtlich darzustellen."/> |
| 18 | + <!-- ** include targets that all plugins have in common ** --> |
| 19 | + <import file="../build-common.xml"/> |
| 20 | + <target name="pre-compile" depends="fetch_dependencies"> |
| 21 | + <!-- include fetch_dependencies task --> |
| 22 | + </target> |
15 | 23 | </project> |
0 commit comments