source: osm/applications/editors/josm/plugins/ColumbusCSV/build.xml@ 36265

Last change on this file since 36265 was 35978, checked in by taylor.smock, 2 years ago

See #22115: Extract methods from LatLon into ILatLon where they are generally applicable

This uses the extracted methods where possible, and removes unnecessary
Node#getCoor calls.

  • Property svn:eol-style set to native
  • Property svn:mime-type set to text/xml
File size: 1.1 KB
Line 
1<?xml version="1.0" encoding="utf-8"?>
2<project name="ColumbusCSV" default="dist" basedir=".">
3 <!-- enter the SVN commit message -->
4 <property name="commit.message" value="Commit message"/>
5 <!-- Enter the *lowest* JOSM version this plugin is currently compatible with -->
6 <property name="plugin.main.version" value="18494"/>
7
8 <!-- Plugin meta data -->
9 <property name="plugin.author" value="Oliver Wieland"/>
10 <property name="plugin.class" value="org.openstreetmap.josm.plugins.columbusCSV.ColumbusCSVPlugin"/>
11 <property name="plugin.description" value="Imports proprietary CSV files of the Columbus/Visiontac V-900 GPS logger into a GPX layer."/>
12 <property name="plugin.link" value="https://wiki.openstreetmap.org/wiki/JOSM/Plugins/ColumbusCSV"/>
13 <!-- Plugin icon -->
14 <property name="plugin.icon" value="images/colcsvicon.png"/>
15
16 <!-- Plugin version info -->
17 <property name="plugin.stage" value="60"/>
18
19 <!-- ** include targets that all plugins have in common ** -->
20 <import file="../build-common.xml"/>
21</project>
Note: See TracBrowser for help on using the repository browser.