[27939] | 1 | <?xml version="1.0" encoding="utf-8"?>
|
---|
| 2 | <project name="NanoLog" default="dist" basedir=".">
|
---|
[30491] | 3 |
|
---|
[27939] | 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 -->
|
---|
[30416] | 7 | <property name="plugin.main.version" value="7001"/>
|
---|
[27939] | 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"/-->
|
---|
[30416] | 18 | <property name="ant.build.javac.target" value="1.7"/>
|
---|
| 19 | <property name="ant.build.javac.source" value="1.7"/>
|
---|
[27939] | 20 | <property name="plugin.jar" value="${plugin.dist.dir}/${ant.project.name}.jar"/>
|
---|
| 21 | <!--
|
---|
| 22 | **********************************************************
|
---|
| 23 | ** init - initializes the build
|
---|
| 24 | **********************************************************
|
---|
| 25 | -->
|
---|
[30491] | 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 |
|
---|
[27939] | 44 | </project>
|
---|