1 | <?xml version="1.0" encoding="utf-8"?>
|
---|
2 | <project name="NanoLog" default="dist" basedir=".">
|
---|
3 |
|
---|
4 | <!-- enter the SVN commit message -->
|
---|
5 | <property name="commit.message" value="NanoLog"/>
|
---|
6 | <!-- enter the *lowest* JOSM version this plugin is currently compatible with -->
|
---|
7 | <property name="plugin.main.version" value="7001"/>
|
---|
8 | <!--
|
---|
9 | ************************************************
|
---|
10 | ** should not be necessary to change the following properties
|
---|
11 | -->
|
---|
12 | <property name="josm" location="../../core/dist/josm-custom.jar"/>
|
---|
13 | <property name="plugin.build.dir" value="build"/>
|
---|
14 | <property name="plugin.src.dir" value="src"/>
|
---|
15 | <!-- this is the directory where the plugin jar is copied to -->
|
---|
16 | <property name="plugin.dist.dir" value="../../dist"/>
|
---|
17 | <!--property name="plugin.dist.dir" value="/Users/Zverik/AppData/Roaming/JOSM/plugins"/-->
|
---|
18 | <property name="ant.build.javac.target" value="1.7"/>
|
---|
19 | <property name="ant.build.javac.source" value="1.7"/>
|
---|
20 | <property name="plugin.jar" value="${plugin.dist.dir}/${ant.project.name}.jar"/>
|
---|
21 | <!--
|
---|
22 | **********************************************************
|
---|
23 | ** init - initializes the build
|
---|
24 | **********************************************************
|
---|
25 | -->
|
---|
26 | <property name="plugin.author" value="Ilya Zverev"/>
|
---|
27 | <property name="plugin.class" value="nanolog.NanoLogPlugin"/>
|
---|
28 | <property name="plugin.description" value="NanoLog adjustment and btowsing layer"/>
|
---|
29 | <property name="plugin.icon" value="images/nanolog.png"/>
|
---|
30 | <!--<property name="plugin.early" value="..."/>-->
|
---|
31 | <!--<property name="plugin.requires" value="..."/>-->
|
---|
32 | <!--<property name="plugin.stage" value="..."/>-->
|
---|
33 | <property name="plugin.description.ru" value="Загрузчик слоя NanoLog"/>
|
---|
34 | <property name="plugin.link" value="http://wiki.openstreetmap.org/wiki/NanoLog"/>
|
---|
35 | <property name="plugin.link.ru" value="http://wiki.openstreetmap.org/wiki/RU:NanoLog"/>
|
---|
36 |
|
---|
37 |
|
---|
38 | <property name="josm" location="../../core/dist/josm-custom.jar"/>
|
---|
39 | <property name="plugin.dist.dir" value="../../dist"/>
|
---|
40 |
|
---|
41 | <!-- ** include targets that all plugins have in common ** -->
|
---|
42 | <import file="../build-common.xml"/>
|
---|
43 |
|
---|
44 | </project>
|
---|